Added the format template tag that does sprintf-like string format in the templates.

This commit is contained in:
2020-07-08 00:58:25 +08:00
parent db860619f1
commit d047be7ba9
2 changed files with 18 additions and 1 deletions

View File

@ -24,7 +24,8 @@ First written: 2020/7/1
{% load humanize %}
{% block settings %}
{% trans "Cash Report" context "Accounting|" as title %}
{% trans "Cash Account for {} in {}" context "Accounting|" as title_format %}
{% format title_format "庫存現金" period_parser.description as title %}
{% setvar "title" title %}
{% endblock %}