mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 23:48:26 -04:00
This replaces the buttons that aren't part of a macro and that we don't need to write additional styles for with their govuk-frontend equivalent. There were some links that were styled to look like buttons, so these have also been replaced with the new govuk-frontend macro. There was one button on the `choose-account.html` template that was in a section of code that was never reached - this has been deleted.
27 lines
936 B
HTML
27 lines
936 B
HTML
{% from "components/previous-next-navigation.html" import previous_next_navigation %}
|
|
{% extends "withnav_template.html" %}
|
|
{% from "components/button/macro.njk" import govukButton %}
|
|
|
|
{% block service_page_title %}
|
|
Uploads
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<h1 class="heading-large">Uploads</h1>
|
|
<div class="dashboard">
|
|
{{ scheduled_jobs|safe }}
|
|
{% include 'views/dashboard/_jobs.html' %}
|
|
{{ previous_next_navigation(prev_page, next_page) }}
|
|
{% if current_service.can_upload_letters and current_user.has_permissions('send_messages') %}
|
|
<div class="js-stick-at-bottom-when-scrolling">
|
|
{{ govukButton({
|
|
"element": "a",
|
|
"text": "Upload a letter",
|
|
"href": url_for('.upload_letter', service_id=current_service.id),
|
|
"classes": "govuk-button--secondary"
|
|
}) }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|