Files
notifications-admin/app/templates/admin_template.html
Chris Heathcote 12cbc04080 Changed main GOV.UK link depending on whether user is logged in or not
Goes to / for not logged in, /dashboard for logged in.
2015-12-07 16:18:05 +00:00

31 lines
513 B
HTML

{% extends "govuk_template.html" %}
{% block page_title %}
GOV.UK notifications admin
{% endblock %}
{% block cookie_message %}
{% endblock %}
{% block inside_header %}
<div class="phase-banner-beta">
<strong class="phase-tag">BETA</strong>
</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 %}