{% extends "base.html" %} {% load i18n %} {% load static %} {% load comments %} {% load galeria %} {% block content %}
{% if photo.description %} {% endif %} {% if photo.latitude %} {% endif %}
{% translate "Album:" %} {{photo.the_album.name}}
{% translate "Title:" %} {{photo.title}}
{% translate "Description:" %} {{photo.description}}
{% translate "Date:" %} {{photo.view_timestamp}}
{% translate "Coordinates:" %} {{photo.view_latitude}} / {{photo.view_longitude}}
{% get_comment_count for photo as comment_count %} {% if comment_count == 0 %}

No hay comentarios

{% elif comment_count == 1 %}

1 comentario sobre “{{photo.title}}

{% else %}

{{ comment_count }} comentarios sobre “{{photo.title}}

{% endif %} {% render_comment_list for photo %}
{% if 'moderation' in request.GET %}
Su mensaje están siendo moderado. Revise después para verificar que fue aprobado.
{% endif %}

Deja un comentario

{% render_comment_form for photo %}
{% endblock %}