{% extends 'base.html' %} {% load i18n %} {% block 'contents' %} {% if object_list %} {% else %} {% trans 'No data at the moment.' %}
前月 {{ year_month }} 次月 {% endif %} {% for object in object_list %} {% if forloop.first %}    {% endif %} {% if forloop.last %}
前月 {{ object.pay_date }} 次月
{% trans 'No.' %} {% trans 'ExpenseItem' %} {% trans 'Amount' %} {% trans 'Limit' %}
{{ object.expense_id }} {{ object.name }} {{ object.amount }} {% ifequal object.max_amount 0 %}{% trans 'none' %}{% else %}({{ object.max_amount }}){% endifequal %}
  {% trans 'Total' %} {{ total }} ({{ max_amount_total }})
{% endif %} {% endfor %} {% endblock %}