mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-13 23:14:32 -05:00
- Deleted /stylesheets folder - Removed sass build from gulpfile - Changed gov links to usa links - Changed other govuk styles, like breadcrumbs - Changed name of uk_components file to us_components - Fixed a few tests that broke on account of the changes
18 lines
689 B
HTML
18 lines
689 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% set mainClasses = "margin-top-5 padding-bottom-5" %}
|
|
|
|
{% block beforeContent %}
|
|
{% if current_service and current_service.active and current_user.is_authenticated and current_user.belongs_to_service(current_service.id) %}
|
|
<div class="navigation-service usa-breadcrumb">
|
|
<a href="{{ url_for('main.show_accounts_or_dashboard') }}" class="usa-link usa-breadcrumb__link usa-breadcrumb-back-to">Back to {{ current_service.name }}</a>
|
|
</div>
|
|
{% endif %}
|
|
{% block backLink %}{% endblock %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'flash_messages.html' %}
|
|
{% block maincolumn_content %}{% endblock %}
|
|
{% endblock %}
|