{% if pictures %}
Uploads
- Total uploads this week: {{number_of_pictures_uploaded}}
-
- Most commented picture:
Cameras Used
-
{% for cam, count in cameras_used.items %}
- {% if forloop.first %}Your most used camera was a {{cam}} with a total of {{count}} upload{%if count != 1 %}s{%endif%}. {% else %} {{cam}} took {{count}} pictures{%if count == 1 %}s{%endif%} {% endif%} {% endfor %}
Pics
-
{% for pic in pictures %}
-
Tags: {% if pic.tags %} {% for tag in pic.tags %} {{tag.raw}}{% if not forloop.last %},{% endif%} {% endfor %} {% else %} None {% endif %} Camera: {{pic.camera_make}} - {{pic.camera_model}}
{% endfor %}