{% extends "base.html" %} {% comment %} The Mia Accounting Application transaction_form-income.html: The template for the form of the cash-income transactions Copyright (c) 2020 imacat. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Author: imacat@mail.imacat.idv.tw (imacat) First written: 2020/7/23 {% endcomment %} {% load static %} {% load i18n %} {% load mia_core %} {% load accounting %} {% block settings %} {% setvar "title" _("Cash Income Transaction") %} {% setvar "use_jqueryui" True %} {% static "ext-libs/decimal/decimal.min.js" as file %}{% add_js file %} {% static "accounting/css/transactions.css" as file %}{% add_css file %} {% static "accounting/css/summary-helper.css" as file %}{% add_css file %} {% static "accounting/js/transaction-form.js" as file %}{% add_js file %} {% static "js/regular-payments.js" as file %}{% add_js file %} {% static "accounting/js/summary-helper.js" as file %}{% add_js file %} {% endblock %} {% block content %} {% include "accounting/include/summary-helper.html" %} {% for message in form.non_field_errors %}
{{ _("Error:")|force_escape }} {{ message }}
{% endfor %}
{{ _("Back")|force_escape }}
{% csrf_token %}
{{ form.date.errors.0|default:"" }}
    {% for record in form.credit_records %} {% with record_type="credit" no=forloop.counter order=forloop.counter %} {% include "accounting/include/record_form-non-transfer.html" %} {% endwith %} {% empty %} {% with record_type="credit" no=1 order=1 %} {% include "accounting/include/record_form-non-transfer.html" %} {% endwith %} {% endfor %}
  • {{ _("Total")|force_escape }} {{ form.credit_total|short_amount }}
{{ form.notes.errors.0|default:"" }}
{% endblock %}