{% extends "construction/base.html" %} {% load static i18n humanize base_tag construction_tag %} {% block topbar %} {% include 'construction/partials/topbar_only_title.html' %} {% endblock topbar %} {% block page_title %}
{% csrf_token %}

{{request.GET.date}} Expenses

{% endblock page_title %} {% block content %} {% get_expense_category_list as EXPENSE_CATEGORY_LIST %}

※ 기존의 항목을 수정하거나 삭제하는 경우, 해당 페이지는 새로고침 됩니다. 표 안에 입력한 정보를 먼저 저장해주세요.

{% for expense in multi_expenses %} {% empty %} {% endfor %}
Item Category Quantity Amount(cent)
{{expense.item}} {{expense.get_category_display}} {{expense.quantity}} {{expense.amount}}
+ New Line
{% endblock content %} {% block modal %} {% include 'construction/partials/expense_update_modal.html' %} {% endblock %} {% block third_party %} {% get_expense_category_list as EXPENSE_CATEGORY_LIST %} {% include "base/load_datatable.html" %} {% endblock third_party %}