{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "My Glucose Manager" %}{% endblock %} {% block content %}
{% csrf_token %} {{ form.non_field_errors }}
{% trans "Appointments" %}

{% if form.appointment_types.errors %} {% endif %}
{{ form.appointment_types }}
{% if form.title.errors %}
{{ form.title }}
{% else %}
{{ form.title }}
{% endif %}
{% if form.body.errors %}
{{ form.body }}
{% else %}
{{ form.body }}
{% endif %}
{% if form.recall_one_duration.errors %}
{{ form.recall_one_duration }}
{% else %}
{{ form.recall_one_duration }}
{% endif %}
{% if form.recall_two_duration.errors %}
{{ form.recall_two_duration }}
{% else %}
{{ form.recall_two_duration }}
{% endif %}
{% if form.recall_one_unit.errors %}
{{ form.recall_one_unit }}
{% else %}
{{ form.recall_one_unit }}
{% endif %}
{% if form.recall_two_unit.errors %}
{{ form.recall_two_unit }}
{% else %}
{{ form.recall_two_unit }}
{% endif %}
{% if form.id_date_appointments.errors %} {% endif %}
{{ form.date_appointments }}
{% if form.hour_appointments.errors %} {% endif %}
{{ form.hour_appointments }}
{% trans "Last appointments" %} {% for line in data %} {% endfor %}
{% trans "Date" %} {% trans "Title" %} {% trans "Actions" %}
{{ line.date_appointments }} {{ line.title }}
{% endblock %} {% block extrajs %} {% endblock %}