Merge pull request #955 from alphagov/fix-template-inheritance-without-navigation

Don’t inherit directly from admin template
This commit is contained in:
Chris Hill-Scott
2016-09-28 15:12:43 +01:00
committed by GitHub
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
{% extends "admin_template.html" %}
{% extends "withoutnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
@@ -6,7 +6,7 @@
GOV.UK Notify | Service settings
{% endblock %}
{% block fullwidth_content %}
{% block maincolumn_content %}
<h1 class="heading-large">Change your {{ thing }}</h1>

View File

@@ -1,4 +1,4 @@
{% extends "admin_template.html" %}
{% extends "withoutnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
@@ -6,7 +6,7 @@
GOV.UK Notify | Service settings
{% endblock %}
{% block fullwidth_content %}
{% block maincolumn_content %}
<h1 class="heading-large">Change your password</h1>

View File

@@ -1,4 +1,4 @@
{% extends "admin_template.html" %}
{% extends "withoutnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
@@ -6,7 +6,7 @@
GOV.UK Notify | Service settings
{% endblock %}
{% block fullwidth_content %}
{% block maincolumn_content %}
<h1 class="heading-large">Change your {{ thing }}</h1>

View File

@@ -1,4 +1,4 @@
{% extends "admin_template.html" %}
{% extends "withoutnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
@@ -6,7 +6,7 @@
GOV.UK Notify | Service settings
{% endblock %}
{% block fullwidth_content %}
{% block maincolumn_content %}
<h1 class="heading-large">Change your {{ thing }}</h1>