summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2014-03-29 17:56:29 +0100
committerDan McGee <dan@archlinux.org>2014-03-29 17:56:32 +0100
commit945337177d35a5c038e29b6594e1251f26d42156 (patch)
treed5689ec9cbfd050cac7a4d2e15c7f7fa0c40a8df /templates
parent21a4725b923565dd67219317062c02b652207880 (diff)
downloadarchweb-945337177d35a5c038e29b6594e1251f26d42156.tar.gz
archweb-945337177d35a5c038e29b6594e1251f26d42156.tar.xz
Add last_modified column to mirrors
This will make it easier in the future to clear out inactive mirrors that haven't been touched in a while. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/mirrors/mirror_details.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html
index 8a65256..7e1ab9f 100644
--- a/templates/mirrors/mirror_details.html
+++ b/templates/mirrors/mirror_details.html
@@ -46,6 +46,10 @@
<td>{{ mirror.created }}</td>
</tr>
<tr>
+ <th>Last Modified:</th>
+ <td>{{ mirror.last_modified }}</td>
+ </tr>
+ <tr>
<th>Rsync IPs:</th>
<td class="wrap">{{mirror.rsync_ips.all|join:', '}}</td>
</tr>