{% extends "base.html" %} {% block head_ex %} {% endblock %} {% block page %} {% if not is_last_page %} {% endif %}
<<
{% for album in albums %}
  • {{album.name|truncate(20,True)}}({{album.photocount}}) {% if not album.public %} ({{ _("private") }}) {% endif %}
    {{album.updatedate|date}}
    {{album.description|truncate(70,True)}}
    {% if users.is_owner %}x{% endif %}
  • {% endfor %}
    >>
    {% include "latest.html" %}
     
    {% endblock %}