Files
notifications-admin/app/templates/withoutnav_template.html
T

18 lines
706 B
HTML
Raw Normal View History

{% extends "admin_template.html" %}
2019-10-14 16:23:53 +01:00
{% set mainClasses = "govuk-!-padding-top-0 govuk-!-padding-bottom-12" %}
{% block beforeContent %}
{% if current_service and current_service.active and current_user.is_authenticated and current_user.belongs_to_service(current_service.id) %}
2017-03-14 13:47:13 +00:00
<div class="navigation-service">
<a href="{{ url_for('main.show_accounts_or_dashboard') }}" class="govuk-link govuk-link--no-visited-state navigation-service-back-to">Back to {{ current_service.name }}</a>
2017-03-14 13:47:13 +00:00
</div>
{% endif %}
2021-07-30 14:24:35 +01:00
{% block backLink %}{% endblock %}
{% endblock %}
{% block content %}
{% include 'flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
{% endblock %}