Added a different the page title of the search result in the base account list and account list, to be clear.

This commit is contained in:
依瑪貓 2023-02-06 09:47:19 +08:00
parent b7dd53d2f9
commit cd5b1b97fd
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ First written: 2023/1/30
#} #}
{% extends "accounting/base.html" %} {% extends "accounting/base.html" %}
{% block header %}{% block title %}{{ A_("Account Management") }}{% endblock %}{% endblock %} {% block header %}{% block title %}{% if "q" in request.args %}{{ A_("Search Result for \"%(query)s\"", query=request.args["q"]) }}{% else %}{{ A_("Account Management") }}{% endif %}{% endblock %}{% endblock %}
{% block content %} {% block content %}

View File

@ -21,7 +21,7 @@ First written: 2023/1/26
#} #}
{% extends "accounting/base.html" %} {% extends "accounting/base.html" %}
{% block header %}{% block title %}{{ A_("Base Account Managements") }}{% endblock %}{% endblock %} {% block header %}{% block title %}{% if "q" in request.args %}{{ A_("Search Result for \"%(query)s\"", query=request.args["q"]) }}{% else %}{{ A_("Base Account Managements") }}{% endif %}{% endblock %}{% endblock %}
{% block content %} {% block content %}