diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/packages/files-list.html | 6 | ||||
-rw-r--r-- | templates/packages/files.html | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/templates/packages/files-list.html b/templates/packages/files-list.html index c45e0f10..1c9ea635 100644 --- a/templates/packages/files-list.html +++ b/templates/packages/files-list.html @@ -1,3 +1,7 @@ +{% if pkg.last_update > pkg.files_last_update %} +<p class="message">Note: This file list was generated from a previous version +of the package; it may be out of date.</p> +{% endif %} {% if files.count %} <ul> {% for file in files %} @@ -5,5 +9,5 @@ {% endfor %} </ul> {% else %} -<p>No file list available.</p> +<p class="message">No file list available.</p> {% endif %} diff --git a/templates/packages/files.html b/templates/packages/files.html index ebdfb9cf..5e0ceb07 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -6,9 +6,8 @@ <div id="pkgdetails" class="box"> <h2>Package File List: {{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h2> - <p><a href="{{ pkg.get_absolute_url }}">Back to Package</a></p> - <div id="metadata"> + <p><a href="{{ pkg.get_absolute_url }}">Back to Package</a></p> {% include "packages/files-list.html" %} </div> |