diff options
author | Dan McGee <dan@archlinux.org> | 2010-10-21 18:14:02 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-10-21 18:14:02 -0500 |
commit | a5e8c5a8d5a47c06523cc45ce40eec6e844acade (patch) | |
tree | 09751d50c6589b4c6de626c9744bcc0ba6d15f91 /templates | |
parent | 1a4db3c7b9caed1653a14a3096f4c12e56dc54f8 (diff) |
Add flag date column to developer dashboard listrelease_2010-10-21
This only implements about 25% of FS#14656, but it is a good start and
trivial to add for now.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/devel/index.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index 009a6834..baad92e4 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -15,6 +15,8 @@ <th>Repo</th> <th>Version</th> <th>Arch</th> + <th>Flagged</th> + <th>Last Updated</th> </tr> </thead> <tbody> @@ -25,6 +27,8 @@ <td>{{ pkg.repo.name }}</td> <td>{{ pkg.pkgver }}</td> <td>{{ pkg.arch.name }}</td> + <td>{{ pkg.flag_date }}</td> + <td>{{ pkg.last_update }}</td> </tr> {% empty %} <tr class="empty"><td colspan="4"><em>No flagged packages to display</em></td></tr> |