summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-04-09 16:29:38 -0500
committerDan McGee <dan@archlinux.org>2011-04-09 16:34:10 -0500
commit064813560c20f53f9fd759d0c4e0f0a6729c8ba6 (patch)
treef1cb259c155896a00659df086e34a6c4d88460f9 /templates
parent842f59d018947ca696cf116e9d1591f2ad83f8a7 (diff)
downloadarchweb-064813560c20f53f9fd759d0c4e0f0a6729c8ba6.tar.gz
archweb-064813560c20f53f9fd759d0c4e0f0a6729c8ba6.zip
Show more info about todolists on developer dashboardrelease_2011-04-09
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/devel/index.html21
1 files changed, 14 insertions, 7 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index af2e5d28..92332c7a 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -72,19 +72,26 @@
<tr>
<th>Name</th>
<th>Creation Date</th>
+ <th>Creator</th>
<th>Description</th>
+ <th>Package Count</th>
+ <th>Incomplete Count</th>
+ </tr>
</tr>
</thead>
<tbody>
{% for todo in todos %}
- <tr class="{% cycle 'odd' 'even' %}">
- <td><a href="{{ todo.get_absolute_url }}"
- title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
- <td>{{ todo.date_added|date }}</td>
- <td class="wrap">{{ todo.description|urlize }}</td>
- </tr>
+ <tr class="{% cycle 'odd' 'even' %}">
+ <td><a href="{{ todo.get_absolute_url }}"
+ title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
+ <td>{{ todo.date_added|date }}</td>
+ <td>{{ todo.creator.get_full_name }}</td>
+ <td class="wrap">{{ todo.description|urlize }}</td>
+ <td>{{ todo.pkg_count }}</td>
+ <td>{{ todo.incomplete_count }}</td>
+ </tr>
{% empty %}
- <tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr>
+ <tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr>
{% endfor %}
</tbody>
</table>