{% extends "core/base.jinja" %} {%- block additional_css -%} {%- endblock -%} {% block additional_js %} {% endblock %} {% block title %} {% trans user_name=profile.get_display_name() %}{{ user_name }}'s pictures{% endtrans %} {% endblock %} {% block content %} {% if can_edit(profile, user) %} {% trans %}Download all my pictures{% endtrans %} {% endif %} {% for a in albums %} {{ a.name }} {% for p in pictures[a.id] %} {% if p.can_be_viewed_by(user) %} {% if not p.is_moderated %} {% trans %}To be moderated{% endtrans %} {% else %} {% endif %} {% else %} {% trans %}Picture Unavailable{% endtrans %} {% endif %} {% endfor %} {% endfor %} {% endblock %}