diff options
author | Dan McGee <dan@archlinux.org> | 2014-03-29 17:56:29 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2014-03-29 17:56:32 +0100 |
commit | 945337177d35a5c038e29b6594e1251f26d42156 (patch) | |
tree | d5689ec9cbfd050cac7a4d2e15c7f7fa0c40a8df /templates/mirrors/mirror_details.html | |
parent | 21a4725b923565dd67219317062c02b652207880 (diff) | |
download | archweb-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/mirrors/mirror_details.html')
-rw-r--r-- | templates/mirrors/mirror_details.html | 4 |
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> |