diff options
-rw-r--r-- | templates/list_projects.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/list_projects.html b/templates/list_projects.html new file mode 100644 index 0000000..9f922e8 --- /dev/null +++ b/templates/list_projects.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block title %}Project Listing{% endblock %} +{% block content %} +<h1>public projects (<span style="color: green">good</span>)</h1> +<table> + <tr> + <th>project name</th> + <th>description</th> + </tr> + {% for proj in public_projects %} + <tr> + <td><a style="color:#132E28; text-decoration:none; font-style:normal;" href="https://dev.spline.de/trac/{{ proj.0 }}">{{ proj.1 }}</a></td> + <td>{{ proj.2 }}</td> + </tr> + {% endfor %} +</table> +<p> </p> +<h1>private projects (<span style="color: red">bad</span>)</h1> +<table> + <tr> + <th>project name</th> + <th>description</th> + </tr> + {% for proj in private_projects %} + <tr> + <td><a style="color:#132E28; text-decoration:none; font-style:normal;" href="https://dev.spline.de/trac/{{ proj.0 }}">{{ proj.1 }}</a></td> + <td>{{ proj.2 }}</td> + </tr> + {% endfor %} +</table> +{% endblock %} |