mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-24 10:58:52 +01:00
added missing title tags to account pages
This commit is contained in:
parent
b8af7b6abc
commit
f026bb6911
@ -1,5 +1,7 @@
|
||||
{% extends "wagtailadmin/base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block titletag %}{% trans "Account" %}{% endblock %}
|
||||
{% block content %}
|
||||
{% trans "Account" as account_str %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=account_str %}
|
||||
|
@ -1,5 +1,7 @@
|
||||
{% extends "wagtailadmin/base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block titletag %}{% trans "Change password" %}{% endblock %}
|
||||
{% block content %}
|
||||
{% trans "Change password" as change_str %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=change_str %}
|
||||
|
@ -1,5 +1,7 @@
|
||||
{% extends "wagtailadmin/base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block titletag %}{% trans "Notification Preferences" %}{% endblock %}
|
||||
{% block content %}
|
||||
{% trans "Notification Preferences" as prefs_str %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=prefs_str %}
|
||||
|
Loading…
Reference in New Issue
Block a user