Added report.css to the cash account, cash summary, ledger, ledger summary and journal reports in the accounting application.

This commit is contained in:
依瑪貓 2020-07-19 19:52:00 +08:00
parent dc17058d31
commit 65afcd08d3
5 changed files with 15 additions and 0 deletions

View File

@ -20,6 +20,7 @@ cash_summary.html: The template for the cash summary reports
Author: imacat@mail.imacat.idv.tw (imacat)
First written: 2020/7/15
{% endcomment %}
{% load static %}
{% load i18n %}
{% load humanize %}
{% load mia_core %}
@ -28,6 +29,8 @@ First written: 2020/7/15
{% block settings %}
{% blocktrans asvar title with subject=current_subject.title|title context "Accounting|" %}Cash Summary for {{ subject }}{% endblocktrans %}
{% setvar "title" title %}
{% static "accounting/css/report.css" as css %}
{% setvar "css" css %}
{% endblock %}
{% block content %}

View File

@ -20,6 +20,7 @@ cash.html: The template for the cash account reports
Author: imacat@mail.imacat.idv.tw (imacat)
First written: 2020/7/1
{% endcomment %}
{% load static %}
{% load i18n %}
{% load humanize %}
{% load mia_core %}
@ -29,6 +30,8 @@ First written: 2020/7/1
{% blocktrans asvar title with subject=current_subject.title|title period=period.description context "Accounting|" %}Cash Account for {{ subject }} in {{ period }}{% endblocktrans %}
{% setvar "title" title %}
{% setvar "use_period_chooser" True %}
{% static "accounting/css/report.css" as css %}
{% setvar "css" css %}
{% endblock %}
{% block content %}

View File

@ -20,6 +20,7 @@ cash.html: The template for the cash account reports
Author: imacat@mail.imacat.idv.tw (imacat)
First written: 2020/7/1
{% endcomment %}
{% load static %}
{% load i18n %}
{% load humanize %}
{% load mia_core %}
@ -29,6 +30,8 @@ First written: 2020/7/1
{% blocktrans asvar title with subject=current_subject.title|title period=period.description context "Accounting|" %}Cash Account for {{ subject }} in {{ period }}{% endblocktrans %}
{% setvar "title" title %}
{% setvar "use_period_chooser" True %}
{% static "accounting/css/report.css" as css %}
{% setvar "css" css %}
{% endblock %}
{% block content %}

View File

@ -20,6 +20,7 @@ ledger_summary.html: The template for the ledger summary reports
Author: imacat@mail.imacat.idv.tw (imacat)
First written: 2020/7/17
{% endcomment %}
{% load static %}
{% load i18n %}
{% load humanize %}
{% load mia_core %}
@ -28,6 +29,8 @@ First written: 2020/7/17
{% block settings %}
{% blocktrans asvar title with subject=current_subject.title|title context "Accounting|" %}Ledger Summary for {{ subject }}{% endblocktrans %}
{% setvar "title" title %}
{% static "accounting/css/report.css" as css %}
{% setvar "css" css %}
{% endblock %}
{% block content %}

View File

@ -20,6 +20,7 @@ ledger.html: The template for the ledger reports
Author: imacat@mail.imacat.idv.tw (imacat)
First written: 2020/7/16
{% endcomment %}
{% load static %}
{% load i18n %}
{% load humanize %}
{% load mia_core %}
@ -29,6 +30,8 @@ First written: 2020/7/16
{% blocktrans asvar title with subject=current_subject.title|title period=period.description context "Accounting|" %}Ledger for {{ subject }} in {{ period }}{% endblocktrans %}
{% setvar "title" title %}
{% setvar "use_period_chooser" True %}
{% static "accounting/css/report.css" as css %}
{% setvar "css" css %}
{% endblock %}
{% block content %}