diff options
author | eliott <eliott@cactuswax.net> | 2008-03-08 17:45:19 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-03-08 17:45:19 -0800 |
commit | 4380bd20e44d9e839c3456dadefe4b45de5187ff (patch) | |
tree | 9f0bb560be30095817afe240b1250ddba3f538ff | |
parent | 18156a182c935249772f7939695a68b32e403ac0 (diff) |
Fix for time display on repo last update
-rw-r--r-- | templates/devel/siteindex.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/siteindex.html b/templates/devel/siteindex.html index e97d9150..3cbf08a9 100644 --- a/templates/devel/siteindex.html +++ b/templates/devel/siteindex.html @@ -108,7 +108,7 @@ {% for repo in repos %} <tr> <th><a href="/packages/?repo={{ repo.name }}">{{ repo.name }}</a></th> - <td>{{ repo.last_update }}</td> + <td>{{ repo.last_update|date:"Y-m-d H:i" }}</td> </tr> {% endfor %} </table> |