{% if project.sections.all %}
{% for section in project.sections.all %}

{{ section.name }}

{% if section.date %}

{{ section.date|date:"m/d/Y" }}

{% endif %}
{% if section.description %}

{{ section.description }}

{% endif %}
{% if section.slides.all %} {% for slide in section.slides.all %} {% include 'includes/comps_grid.html' %} {% endfor %} {% endif %}
{% endfor %}
{% else %}

Nothing has been posted to {{ rollup.category.name }} yet.

{% endif %}