{% extends 'base.html' %} {% load i18n %} {% load squander_tag %} {% load squander_filter %} {% block 'contents' %}

出費一覧


Filter

{% get_tag_list as tag_list %} {% for tag in tag_list %} {% if forloop.first %} {% endif %} {% endfor %}
{% if not object_list %} {% trans 'No data at the moment.' %}({{ year_month }})
{% endif %} {% for object in object_list %} {% if forloop.first %}    {% endif %} {% if forloop.last %} {% get_amount_total as total %}
{{ year_month }}
{% trans 'payment date' %} {% trans 'Expense Item' %} {% trans 'Amount' %} {% trans 'Tags' %} {% trans 'Note' %}
{{ object.pay_date|date:"Y/m/d" }} {{ object.expense_item }} {{ object.amount }} {{ object.tag_list|join:"/" }} {{ object.short_note }}
  {% trans 'Total' %} {{ total }}  
{% endif %}
{% endfor %} {% endblock %}