mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 17:48:26 -04:00
We had 7 classes in _grids.scss named `.column-...` which were being used to give a certain column width. These worked by using `@include grid column()`, which is now deprecated. `.column-whole` and `.column-three-quarters` can be removed and replaced with `govuk-grid-column-full` and `govuk-grid-column-three-quarters` respectively. The other column classes don't have a direct replacment in GOV.UK Frontend. To get round this, we overwrite the `$govuk-grid-width` SASS map in `extensions.scss` to add in extra widths, then use this with the `govuk-grid-column` mixin to create new classes in for our custom widths in `_grids.scss`
48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% 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 %}
|
||
|
||
{% block service_page_title %}
|
||
Send files by email
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
<div class="govuk-grid-row">
|
||
<div class="govuk-grid-column-five-sixths">
|
||
{{ page_header(
|
||
'Send files by email',
|
||
back_link=url_for('main.service_settings', service_id=current_service.id)
|
||
) }}
|
||
<p>
|
||
This is an API-only feature.
|
||
</p>
|
||
<p>
|
||
To send a file by email, follow the instructions in our <a href={{ url_for('main.documentation') }}>API documentation</a>.
|
||
</p>
|
||
<h2 class="heading-medium">{% 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 there’s 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 %}
|
||
{% set data_target = option.data.replace('_', '-') ~ "-type" %}
|
||
|
||
{{ radio(option, data_target=data_target) }}
|
||
<div class="panel panel-border-narrow js-hidden" id={{data_target}}>
|
||
{{ textbox(form|attr(option.data), label=' ', width='1-1') }}
|
||
</div>
|
||
{% endfor %}
|
||
{% endcall %}
|
||
|
||
{{ page_footer('Save') }}
|
||
{% endcall %}
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|