Files
notifications-admin/app/templates/views/jobs/jobs.html
Jonathan Bobel f342e0fb6c Updating site to use USWDS styles (#509)
* Updated header and footer
* Updated fonts
* Moved files around and updated gulpfile to correct the build process when it goes to production
* Adjusted grid templating
* Added images to assets
* Update app/templates/components/uk_components/footer/template.njk

Co-authored-by: Steven Reilly <stvnrlly@users.noreply.github.com>
2023-06-06 15:28:24 -04:00

22 lines
627 B
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>
You have not uploaded any files recently.
</p>
{% endif %}
{{ previous_next_navigation(prev_page, next_page) }}
</div>
{% endblock %}