diff options
author | Dan McGee <dan@archlinux.org> | 2014-03-29 11:56:29 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2014-03-29 11:56:32 -0500 |
commit | 945337177d35a5c038e29b6594e1251f26d42156 (patch) | |
tree | d5689ec9cbfd050cac7a4d2e15c7f7fa0c40a8df /templates | |
parent | 21a4725b923565dd67219317062c02b652207880 (diff) |
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.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html index 8a652563..7e1ab9f8 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> |