{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Projects

{% for project in projects %}
{% if project.setup_type and 'Video' in project.setup_type %} {% if project.videos %} {% endif %} {% else %} {% for img in project.images %} Project image {% endfor %} {% endif %}
{{ project.name }}
{% endfor %}
{% endblock %}