{% extends "base.html" %} {% block inline_css %} {{block.super}} {% include 'user_image/image_set.css' %} {% include 'tag/list.css' %} {% include 'job/status.css' %} {% include 'form_ajax.css' %} {% endblock %} {% block javascript %} {{ block.super }} {% include 'form_ajax.js' %} {% include 'comment/comment.js' %} {% include 'tag/tag.js' %} {% endblock %} {% block title %} Albums > {{ album.title }} {% endblock %} {% block content %} {% if user == album.user %}
Edit Album | Delete Album
{%endif %}
Submitted by {% include 'user/display_name.html' with user=album.user %}
{{ album.created_at|date:"Y-m-d" }}
{{ album.user_images.all|length }} image{{ album.user_images.all|pluralize }}
{% comment %}{% if user.is_authenticated and user == album.user %}
publicly visible: {% include 'hideable/publicly_visible.html' with hideable=album %}
{% endif %} {% endcomment %}

Tags

{%comment %}{% include 'tag/user_image_tag_list.html' with user_image_id=image.id tags=image.tags.all tagged_object_owner=image.user next=request.path %} {% endcomment %}

Add Tag (TODO)

{{ album.description }}

{% include 'user_image/paginated_image_set.html' with image_page=image_page %}

Comments

{% include 'comment/list.html' with comments=album.comment_receiver.comments.all next=request.path %} {% include 'comment/form.html' with comment_form=comment_form category='album' recipient_id=album.comment_receiver.id next=request.path %}
{% endblock %}