diff options
Diffstat (limited to 'fbin/templates/images.html')
-rw-r--r-- | fbin/templates/images.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fbin/templates/images.html b/fbin/templates/images.html index c4bfd8f..e6c1ad0 100644 --- a/fbin/templates/images.html +++ b/fbin/templates/images.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} -<p>You have {{ files|length() }} uploaded images totaling {{ total_size }}.</p> {% if files %} +<p>You have {{ files|length() }} uploaded {{ title|lower }} totaling {{ total_size }}.</p> <div class="row"> {% for file in files %} <div class="image-thumbnail"> @@ -13,7 +13,7 @@ {% endfor %} </div> {% else %} -<div><em>(No image uploads yet.)</em></div> +<div><em>(No {{ title|lower }} uploaded yet.)</em></div> {% endif %} {% endblock %} {% block scripts %} |