Files
notifications-admin/app/templates/views/service-settings/send-files-by-email.html

49 lines
1.9 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/radios.html" import radio %}
{% from "components/select-input.html" import select_wrapper %}
{% from "components/form.html" import form_wrapper %}
2023-08-30 11:07:38 -04:00
{% from "components/components/back-link/macro.njk" import usaBackLink %}
{% block service_page_title %}
Send files by email
{% endblock %}
{% block backLink %}
2023-08-30 11:07:38 -04:00
{{ usaBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
{% endblock %}
{% block maincolumn_content %}
2023-08-23 16:18:25 -04:00
<div class="grid-row">
<div class="grid-col-10">
{{ page_header('Send files by email') }}
<p>
This is an API-only feature.
</p>
<p>
To send a file by email, follow the instructions in our <a class="usa-link" href={{ url_for('main.documentation') }}>API documentation</a>.
</p>
<h2 class="font-body-lg">{% if contact_details %}Change contact details for{% else %}Add contact details to{% endif %} the file download page</h2>
<p>
You need to include contact details for your service so your users can get in touch if theres a problem. For example, if the link to download the file you sent them has expired.
</p>
{% call form_wrapper() %}
{% call select_wrapper(form.contact_details_type, hide_legend=true) %}
{% for option in form.contact_details_type %}
2018-08-13 12:24:52 +01:00
{% set data_target = option.data.replace('_', '-') ~ "-type" %}
{{ radio(option, data_target=data_target) }}
<div class="panel panel-border-narrow js-hidden" id={{data_target}}>
{{ form|attr(option.data)(param_extensions={"classes": "", "label": {"text": " "}}) }}
2018-08-13 12:24:52 +01:00
</div>
{% endfor %}
{% endcall %}
{{ page_footer('Save') }}
{% endcall %}
</div>
</div>
{% endblock %}