0
0
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:
Dave Cranwell 2014-06-27 12:09:00 +01:00
parent b8af7b6abc
commit f026bb6911
3 changed files with 6 additions and 0 deletions

View File

@ -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 %}

View File

@ -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 %}

View File

@ -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 %}