summaryrefslogtreecommitdiffstats
path: root/templates/list_projects.html
blob: 9f922e83c415fb6a4ef5c0eb01e02867ab8b5d70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>&nbsp;</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 %}