{% extends "blog_base.html" %} {% block content %} {% if gallery %}

{{ gallery.title }}


{{ gallery.body|safe }}
{% for photo in gallery.photo_set.all %} {% if forloop.last %}

{% endif %} {% endfor %}

Created {{ gallery.created|date:"m/d/y @ h:iA T" }} by {{ gallery.owner }}

Categories: {% for x in gallery.category.all %}{{ x }} {% endfor %}

Tags: {% for tag in gallery.get_tags %} {{ tag }} {% endfor %}


Reddit Digg it! StumbleUpon Delicious!


{% load disqus_tags %} {% disqus_show_comments %}
{% endif %} {% endblock %}