{% load media_loaders %}
{% if pictures %}

Uploads

  • Total uploads this week: {{number_of_pictures_uploaded}}
  • https://chart.googleapis.com/chart?chd=t:{% for datetime, count in days_taken.items %}{{count}}{% if not forloop.last %},{% endif%}{%endfor%}&chco=A2C180&chs=750x200&chxt=x,y&chm=B,A2C180,0,-1,6&chds=0,11&chxl=0%3A{% for datetime, count in days_taken.items %}|{{datetime|date:"D"}}{% endfor %}|1%3A|0|1|2|3|4|5|6|7|8|9|10|11&cht=lc
  • {% if most_commented_picture.body %}
  • Most commented picture:
  • {% endif %}

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 %}
{% else %}

No pictures uploaded this week, I'm afraid.

{% endif %}