{% extends "pictures/main.html" %} {% block title %} Photos for {{ username }} {% endblock %} {% block body %}
Most recent albums:
{% for album in album_list %} {% endfor %} {# This sucks too; this is, I guess, why Rails has this Routes stuff #} See all of {{ username }}'s albums
Most recent photos: {% with "This user does not have any photos" as no_photo_message %} {% with "pictures/end_user_picture_list.html" as at_end %} {% include "pictures/picture_list.html" %} {% endwith %} {% endwith %}
{% endblock %}