{% extends "layouts/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load month_name %} {% load static %} {% block title %}{% translate 'Monthly Overview' %} :: {{ month|month_name }}/{{ year }}{% endblock %} {% block body_hyperscript %} on keyup[code is 'ArrowLeft' and target.nodeName is 'BODY'] from body trigger 'previous_month' end on keyup[code is 'ArrowRight' and target.nodeName is 'BODY'] from body trigger 'next_month' end {% endblock %} {% block content %}
{# Date picker#}
{{ month|month_name }} {{ year }}
{# Monthly summary#}
{# Hidden select to hold the order value and preserve the original update trigger #} {# Main control bar with filter, search, and ordering #}
{# Search box #} {# Order by icon dropdown #}
{# Filter transactions form #}
{% crispy filter.form %}
{# Transactions list#}
{% endblock %}