Files
notifications-admin/app/templates/admin_template.html

35 lines
632 B
HTML
Raw Normal View History

{% extends "govuk_template.html" %}
{% block head %}
{% assets "css_all" %}
<link rel="stylesheet" href="{{ ASSET_URL }}" />
{% endassets %}
{% endblock %}
{% block page_title %}
GOV.UK notifications admin
{% endblock %}
{% block cookie_message %}
{% endblock %}
2015-12-03 16:01:00 +00:00
{% block inside_header %}
<div class="phase-banner-beta">
2015-12-03 16:01:00 +00:00
<strong class="phase-tag">BETA</strong>
2015-12-03 16:01:00 +00:00
</div>
{% endblock %}
{% set global_header_text = "GOV.UK Notify" %}
{% if not current_user.is_authenticated() %}
{% set homepage_url = url_for('main.index') %}
{% else %}
{% set homepage_url = url_for('main.dashboard') %}
{% endif %}