diff options
author | Dan McGee <dan@archlinux.org> | 2010-12-22 04:34:40 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-02-22 23:00:51 +0100 |
commit | 4b12255d1cf52fcc1a98c230d940d0c1d3809ad2 (patch) | |
tree | b2a0f99a378f0b700538546cc69b431a0861cdc2 /templates/packages | |
parent | eeff0749d86ec403e55dc626034991638edad619 (diff) | |
download | archweb-4b12255d1cf52fcc1a98c230d940d0c1d3809ad2.tar.gz archweb-4b12255d1cf52fcc1a98c230d940d0c1d3809ad2.tar.xz |
Use new split package file fields everywhere
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages')
-rw-r--r-- | templates/packages/files-list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/files-list.html b/templates/packages/files-list.html index 1c9ea63..bb89b66 100644 --- a/templates/packages/files-list.html +++ b/templates/packages/files-list.html @@ -5,7 +5,7 @@ of the package; it may be out of date.</p> {% if files.count %} <ul> {% for file in files %} - <li>{{ file.path }}</li> + <li>{{ file.directory }}{{ file.filename|default:'' }}</li> {% endfor %} </ul> {% else %} |