{# The Mia! Accounting Project unapplied.html: The unapplied original line items Copyright (c) 2023 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: 2023/4/7 #} {% extends "accounting/base.html" %} {% block accounting_scripts %} {% endblock %} {% block header %}{% block title %}{{ A_("Unapplied Original Line Items of %(account)s", account=report.account.title|title) }}{% endblock %}{% endblock %} {% block content %}
{% with use_account_chooser = true %} {% include "accounting/report/include/toolbar-buttons.html" %} {% endwith %}
{% include "accounting/report/include/add-journal-entry-material-fab.html" %} {% include "accounting/report/include/search-modal.html" %} {% if report.has_data %} {% with pagination = report.pagination %} {% include "accounting/include/pagination.html" %} {% endwith %}
{{ A_("Date") }}
{{ A_("Currency") }}
{{ A_("Description") }}
{{ A_("Amount") }}
{{ A_("Net Balance") }}
{% for line_item in report.line_items %}
{{ line_item.journal_entry.date|accounting_format_date }}
{{ line_item.currency.name }}
{{ line_item.description|accounting_default }}
{{ line_item.amount|accounting_format_amount }}
{{ line_item.net_balance|accounting_format_amount }}
{% endfor %}
{% for line_item in report.line_items %}
{{ line_item.journal_entry.date|accounting_format_date }} {% if line_item.currency.code != accounting_default_currency_code() %} {{ line_item.currency.code }} {% endif %}
{% if line_item.description is not none %}
{{ line_item.description }}
{% endif %}
{{ line_item.amount|accounting_format_amount }} {{ line_item.net_balance|accounting_format_amount }}
{% endfor %}
{% else %}

{{ A_("There is no data.") }}

{% endif %} {% endblock %}