{% extends 'exp/base.html' %} {% load bootstrap3 %} {% load exp_extras %} {% block title %}Studies{% endblock %} {% block flash %} {% bootstrap_messages %} {% if form.non_field_errors %} {% endif %} {% endblock %} {% block content %}

Manage Studies

{% if perms.studies.can_create_study %} {% endif %}

{% for study in object_list %}
Begin date: {{ study.begin_date|date:"M d, Y"|default:"N/A" }}
End date: {{ study.end_date|date:"M d, Y"|default:"N/A" }}

{{ study.short_description }}

Study Creator: {{ study.creator.get_short_name }}
Status: {{ study.state|title }}
Edited: {{ study.date_modified|date:"M d, Y" }}
Compl Responses: {{ study.completed_responses_count }}
Inc Responses: {{ study.incomplete_responses_count }}
{% empty %}

No studies found!

{% endfor %}
{% if object_list %}
{% include 'studies/_paginator.html' with items=object_list %}
{% endif %}
{% endblock %}