diff --git a/app/main/views/feedback.py b/app/main/views/feedback.py index f0eab1908..843d3f802 100644 --- a/app/main/views/feedback.py +++ b/app/main/views/feedback.py @@ -144,7 +144,7 @@ def feedback(ticket_type): form.feedback.data = get_prefilled_message() return render_template( - 'views/support/{}.html'.format(PROBLEM_TICKET_TYPE), + 'views/support/form.html', form=form, is_problem=(ticket_type == PROBLEM_TICKET_TYPE), ) diff --git a/app/templates/views/support/ask-question-give-feedback.html b/app/templates/views/support/ask-question-give-feedback.html deleted file mode 100644 index 77e9ec8f9..000000000 --- a/app/templates/views/support/ask-question-give-feedback.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "withoutnav_template.html" %} -{% from "components/textbox.html" import textbox %} -{% from "components/page-footer.html" import sticky_page_footer %} -{% from "components/page-header.html" import page_header %} -{% from "components/form.html" import form_wrapper %} - -{% block per_page_title %} - Ask a question or give feedback -{% endblock %} - -{% block maincolumn_content %} - - {{ page_header( - 'Ask a question or give feedback', - back_link=url_for('.support') - ) }} -
We’ll reply to {{ current_user.email_address }}
- {% endif %} - {{ sticky_page_footer('Send') }} - {% endcall %} -