summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-11-30 11:42:44 -0600
committerDan McGee <dan@archlinux.org>2010-11-30 11:42:44 -0600
commitf2147cdeec3daafbdbbf3172fd4cc94ef24ee851 (patch)
treeea2775887557ecd8f38348af03d3646e3e3ab1aa
parent14c8833cf0e1e2e6bd2b59f9da9944757aa47c70 (diff)
downloadarchweb-f2147cdeec3daafbdbbf3172fd4cc94ef24ee851.tar.gz
archweb-f2147cdeec3daafbdbbf3172fd4cc94ef24ee851.zip
Make dev dashboard columns a bit prettier
We don't need to force widths on the upper tables, and ensure the todo list description can wrap if it is a long one. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--templates/devel/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index baad92e4..cb9b92ae 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -11,7 +11,7 @@
<table id="dash-myflagged" class="results dash-stats">
<thead>
<tr>
- <th class="key">Name</th>
+ <th>Name</th>
<th>Repo</th>
<th>Version</th>
<th>Arch</th>
@@ -42,7 +42,7 @@
<thead>
<tr>
<th>Todo List</th>
- <th class="key">Name</th>
+ <th>Name</th>
<th>Repo</th>
<th>Arch</th>
<th>Maintainer(s)</th>
@@ -78,10 +78,10 @@
<tbody>
{% for todo in todos %}
<tr class="{% cycle 'odd' 'even' %}">
- <td class="key"><a href="{{ todo.get_absolute_url }}"
+ <td><a href="{{ todo.get_absolute_url }}"
title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
<td>{{ todo.date_added }}</td>
- <td>{{ todo.description|safe }}</td>
+ <td class="wrap">{{ todo.description|safe }}</td>
</tr>
{% empty %}
<tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr>