Files

22 lines
621 B
HTML
Raw Permalink Normal View History

2016-10-10 14:50:59 +01:00
{% from "components/previous-next-navigation.html" import previous_next_navigation %}
2015-12-14 16:53:07 +00:00
{% extends "withnav_template.html" %}
2023-08-30 11:07:38 -04:00
{% from "components/components/button/macro.njk" import usaButton %}
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
2019-10-09 10:52:33 +01:00
Uploads
{% endblock %}
2015-12-14 16:53:07 +00:00
{% block maincolumn_content %}
2023-08-16 12:49:36 -04:00
<h1 class="font-body-2xl">Uploads</h1>
2016-05-25 13:36:35 +01:00
<div class="dashboard">
2020-02-24 10:59:57 +00:00
{% if jobs %}
{% include 'views/dashboard/_jobs.html' %}
2020-03-02 14:26:04 +00:00
{% else %}
2023-06-06 15:28:24 -04:00
<p>
You have not uploaded any files recently.
</p>
{% endif %}
2016-10-10 14:50:59 +01:00
{{ previous_next_navigation(prev_page, next_page) }}
2016-05-25 13:36:35 +01:00
</div>
{% endblock %}