diff --git a/app/blueprints/fund_builder/forms/round.py b/app/blueprints/fund_builder/forms/round.py index 90d41186..5b60594b 100644 --- a/app/blueprints/fund_builder/forms/round.py +++ b/app/blueprints/fund_builder/forms/round.py @@ -92,7 +92,7 @@ class RoundForm(FlaskForm): application_reminder_sent = RadioField(choices=[("true", "Yes"), ("false", "No")], default="false") contact_us_banner_json = TextAreaField("Contact Us Banner") reference_contact_page_over_email = RadioField( - "Reference contact page over emai", choices=[("true", "Yes"), ("false", "No")], default="false" + "Reference contact page over email", choices=[("true", "Yes"), ("false", "No")], default="false" ) contact_email = StringField("Contact Email", validators=[DataRequired()]) contact_phone = StringField("Contact Phone", validators=[DataRequired()]) diff --git a/app/blueprints/fund_builder/templates/fund.html b/app/blueprints/fund_builder/templates/fund.html index 5406d986..dcff26d1 100644 --- a/app/blueprints/fund_builder/templates/fund.html +++ b/app/blueprints/fund_builder/templates/fund.html @@ -1,11 +1,12 @@ {% extends "base.html" %} +{% set pageHeading %}{{ 'Update a Fund' if fund_id else 'Create a Fund' }} {% endset %} {% from "macros/wtfToGovUk.html" import input %} {% from "macros/wtfToGovUk.html" import yes_no %} {%- from "govuk_frontend_jinja/components/button/macro.html" import govukButton -%} {% block content %}