From 281ba65331b01beeb1c901ea99fe6862d7bf7876 Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sun, 7 Jun 2020 23:57:01 +1000 Subject: [PATCH] Clean up files --- .../jinja2/debug_noncash_transactions.html | 50 ------------------- 1 file changed, 50 deletions(-) delete mode 100644 ledger_pyreport/jinja2/debug_noncash_transactions.html diff --git a/ledger_pyreport/jinja2/debug_noncash_transactions.html b/ledger_pyreport/jinja2/debug_noncash_transactions.html deleted file mode 100644 index 0889512..0000000 --- a/ledger_pyreport/jinja2/debug_noncash_transactions.html +++ /dev/null @@ -1,50 +0,0 @@ -{# - ledger-pyreport - Copyright © 2020 Lee Yingtong Li (RunasSudo) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . -#} - -{% extends 'base_report.html' %} - -{% block title %}Account Transactions as at {{ date.strftime('%d %B %Y') }}{% endblock %} - -{% block report %} -

Account Transactions

-

For {{ account.name }}

-

For the {{ period }}

- - - - - - - - - - - {% for transaction in transactions %} - {% for posting in transaction.postings %} - {% set amount = posting.exchange(report_commodity, transaction.date) %} - - - - - - - - {% endfor %} - {% endfor %} -
DateDescriptionAccountDrCr
{% if loop.first %}{{ transaction.date.strftime('%Y-%m-%d') }}{% endif %}{% if loop.first %}{{ transaction.description }}{% endif %}{{ (posting.account.name|e).__str__().replace(':', ':')|safe }}{% if amount > 0 %}{{ amount|b }}{% endif %}{% if amount < 0 %}{{ -amount|b }}{% endif %}
-{% endblock %}