mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-13 06:54:20 -05:00
It doesn’t make sense to show the back to service link if, for example, you are in the onboarding flow and haven’t created a service yet.
16 lines
441 B
HTML
16 lines
441 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block fullwidth_content %}
|
|
<div id="content">
|
|
{% if current_service %}
|
|
<div class="navigation-service">
|
|
<a href="{{ url_for('main.show_all_services_or_dashboard') }}">Back to {{ current_service.name }}</a>
|
|
</div>
|
|
{% endif %}
|
|
<main role="main">
|
|
{% include 'flash_messages.html' %}
|
|
{% block maincolumn_content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
{% endblock %}
|