diff --git a/passbook/core/templates/base/skeleton.html b/passbook/core/templates/base/skeleton.html index d4105aec12..ddd6078555 100644 --- a/passbook/core/templates/base/skeleton.html +++ b/passbook/core/templates/base/skeleton.html @@ -8,7 +8,7 @@ - {% block title %}{% trans title %}{% endblock %} + {% block title %}{% trans title|default:"passbook" %}{% endblock %} diff --git a/passbook/core/templates/overview/base.html b/passbook/core/templates/overview/base.html index 22ef69a13e..205ee5a565 100644 --- a/passbook/core/templates/overview/base.html +++ b/passbook/core/templates/overview/base.html @@ -7,7 +7,6 @@ {% load utils %} {% block page_content %} -{% include 'partials/messages.html' %}
{% block content %} {% endblock %} diff --git a/passbook/core/templates/user/base.html b/passbook/core/templates/user/base.html index b434da056b..6e9d0e650e 100644 --- a/passbook/core/templates/user/base.html +++ b/passbook/core/templates/user/base.html @@ -1,67 +1,69 @@ -{% extends "overview/base.html" %} +{% extends "base/page.html" %} {% load i18n %} {% load is_active %} {% load static %} {% load passbook_user_settings %} -{% block content %} -
-
-
-
-
- +{% block page_content %} +
+
+ +
+
+
+
+
+
+
+ {% block page %} + {% endblock %}
-
-
- {% block page %} - {% endblock %} -
-
-
-
+ +
{% endblock %}