{% extends 'base.html' %} {% block content %}
{% block header %}

{% block title %}Cycles{% endblock %}

{% endblock %}
{% for cycle in cycles %}
{% if cycle['cycle_length'] %} {% if loop.first %} Day {{ cycle['cycle_length'] }} {% else %} {{ cycle['cycle_length'] }} days. {% endif %} {% else %} {% endif %}

Started: {{ cycle['start_time'][:10] }}
{% if cycle['end_time'] is not none %} Ended: {{ cycle['end_time'][:10] }} {% endif %}

Edit
{% if not loop.last %} {% endif %} {% endfor %}
{% endblock %}