Merge pull request #2894 from GSA/827-allow-users-to-move-between-steps-without-losing-data

added 'change csv button' on preview page
This commit is contained in:
ccostino
2025-09-04 21:21:57 -04:00
committed by GitHub

View File

@@ -101,9 +101,16 @@
{% set button_text %}
{{ "Schedule" if scheduled_for else 'Send'}}
{% endset %}
{{ usaButton({
"text": button_text,
"name": button_text
}) }}
<div>
{{ usaButton({
"text": button_text,
"name": button_text
}) }}
{{ usaButton({
"text": "Change CSV file",
"classes": "usa-button--outline",
"href": url_for('main.send_messages', service_id=current_service.id, template_id=template_id)
}) }}
</div>
</form>
{% endblock %}