{% extends "base.html" %} {% block content %} {% if studies %}
{% for study in studies %}
{% if study.image %} Study Image {% else %} No Image {% endif %}
{{ study.name }}
{{ study.start_date }} to {{ study.end_date }}
{% if study.description %}

{{ study.description }}

{% endif %} View Responses
{% endfor %}
{% else %} {% endif %} {% endblock %}