diff options
author | Dan McGee <dan@archlinux.org> | 2012-09-30 10:31:20 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-09-30 10:31:22 -0500 |
commit | 6e1712b4d6c7525e03c5fac775fa16406dd4009f (patch) | |
tree | c6a6df7f40c66cef36a3bd6aaf62a88553cac7c1 /templates/packages/details.html | |
parent | feabc12d384a448614dbc8a9a51cd39ee63b4a83 (diff) |
Show full date and time for package last update
Now that we do updates on the fly and not just once an hour, we can
afford to show a bit more granularity here.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index 5a5598a0..5a93ce23 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -189,7 +189,7 @@ <td>Unsigned</td> </tr>{% endif %}<tr> <th>Last Updated:</th> - <td>{{ pkg.last_update|date }}</td> + <td>{{ pkg.last_update|date:"DATETIME_FORMAT" }} UTC</td> </tr> {% if user.is_authenticated %}{% with pkg.flag_request as flag_request %}{% if flag_request %}<tr> <th>Last Flag Request:</th> |