mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-04 08:01:34 -04:00
The uploads hub is just a page with text for now - there are no actions available on the page. It is linked to from a new 'Uploads' menu item on the left of the page which is only visible if your service has the `letter` and `upload_letters` permissions and if the current user has permissions to send messages.
17 lines
385 B
HTML
17 lines
385 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
|
|
{% block service_page_title %}
|
|
Uploads
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
{{ page_header('Uploads') }}
|
|
|
|
<p>Upload a letter and Notify will print, pack and post it for you.</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|