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 %} {% set button_text %}
{{ "Schedule" if scheduled_for else 'Send'}} {{ "Schedule" if scheduled_for else 'Send'}}
{% endset %} {% endset %}
{{ usaButton({ <div>
"text": button_text, {{ usaButton({
"name": button_text "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> </form>
{% endblock %} {% endblock %}