mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 14:28:25 -04:00
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
{% from "components/previous-next-navigation.html" import previous_next_navigation %}
|
|
{% extends "withnav_template.html" %}
|
|
{% from "components/uk_components/button/macro.njk" import govukButton %}
|
|
|
|
{% block service_page_title %}
|
|
Uploads
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<h1 class="heading-medium">Uploads</h1>
|
|
<div class="dashboard">
|
|
{% if jobs %}
|
|
{% include 'views/dashboard/_jobs.html' %}
|
|
{% else %}
|
|
<p class="govuk-body">
|
|
You have not uploaded any files recently.
|
|
</p>
|
|
{% endif %}
|
|
{{ previous_next_navigation(prev_page, next_page) }}
|
|
{% if current_user.has_permissions('send_messages') %}
|
|
<div class="js-stick-at-bottom-when-scrolling">
|
|
{{ govukButton({
|
|
"element": "a",
|
|
"text": "Upload an emergency contact list",
|
|
"href": url_for('.upload_contact_list', service_id=current_service.id),
|
|
"classes": "govuk-button--secondary"
|
|
}) }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|