mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-14 23:08:07 -04:00
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 %}
|