mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-14 23:08:07 -04:00
* Updated header and footer * Updated fonts * Moved files around and updated gulpfile to correct the build process when it goes to production * Adjusted grid templating * Added images to assets * Update app/templates/components/uk_components/footer/template.njk Co-authored-by: Steven Reilly <stvnrlly@users.noreply.github.com>
26 lines
652 B
HTML
26 lines
652 B
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% block per_page_title %}
|
|
Edit SMS provider priorities
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
{{ page_header('Edit SMS provider priorities') }}
|
|
|
|
<p>
|
|
If you change one priority you will need to change the others so they add up to 100%.
|
|
</p>
|
|
|
|
{% call form_wrapper() %}
|
|
{% for field in form %}
|
|
{{ field }}
|
|
{% endfor %}
|
|
|
|
{{ page_footer('Save') }}
|
|
{% endcall %}
|
|
{% endblock %}
|