{% extends "base.html" %} {% block breadcrumb %} Inicio {% for bc in breadcrumbs %} 〉 {{bc.name}} {% endfor %} {% endblock %} {% load static %} {% block content %}
{% if photos %} {% for photo in photos %}
{{photo.title}}
{% endfor %} {% elif albums %} {% for album in albums %} {% if album.the_photo %}
{{album.name}}
{% endif %} {% endfor %} {% else %}
{% if user.is_authenticated %} Comience a subir fotos si así lo desea {% else %} Ingrese al sistema para poder subir fotos {% endif %}
{% endif %}
{% endblock %}