summaryrefslogtreecommitdiffstats
path: root/templates/devel
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-03-09 02:45:19 +0100
committereliott <eliott@cactuswax.net>2008-03-09 02:45:19 +0100
commit4380bd20e44d9e839c3456dadefe4b45de5187ff (patch)
tree9f0bb560be30095817afe240b1250ddba3f538ff /templates/devel
parent18156a182c935249772f7939695a68b32e403ac0 (diff)
downloadarchweb-4380bd20e44d9e839c3456dadefe4b45de5187ff.tar.gz
archweb-4380bd20e44d9e839c3456dadefe4b45de5187ff.tar.xz
Fix for time display on repo last update
Diffstat (limited to 'templates/devel')
-rw-r--r--templates/devel/siteindex.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/siteindex.html b/templates/devel/siteindex.html
index e97d915..3cbf08a 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>