{% extends "base.html" %} {% load juntagrico.config %} {% block page_title %}

Abos

{% endblock %} {% block content %}
Abo Buchungen nach Periode

{{ daterange_form.fromdate }} {{ daterange_form.tilldate }} {% if daterange_form.fromdate.errors %}
Ungültiges Von Datum
{% endif %} {% if daterange_form.tilldate.errors %}
Ungültiges Bis Datum
{% endif %}

{% for b in bookings %} {% endfor %}
Datum Start Ende {% vocabulary "member" %} Bezeichnung Betrag
{{ b.date|date:"SHORT_DATE_FORMAT" }} {{ b.activation_date|date:"SHORT_DATE_FORMAT" }} {{ b.deactivation_date|date:"SHORT_DATE_FORMAT" }} {{ b.member }} {{ b.text }} {{ b.price | stringformat:'6.2f' }}
{% endblock %}