diff --git a/opentech/apply/funds/templates/funds/fund_type.html b/opentech/apply/funds/templates/funds/fund_type.html
index 8b61a7da8ef66e6687e719402ce64fadb51f8593..4d3a7bbf85264de9a0cfb14f79cfa5970c8071e1 100644
--- a/opentech/apply/funds/templates/funds/fund_type.html
+++ b/opentech/apply/funds/templates/funds/fund_type.html
@@ -2,9 +2,9 @@
 {% load wagtailcore_tags %}
 
 {% block content %}
-    <h1>{{ page.title }}</h1>
+    <h1>{% block title %}{{ page.title }}{% endblock %}</h1>
 
-    <form action="{% pageurl page %}" method="POST">
+    <form action="" method="POST">
         {% csrf_token %}
 
         {% if form.errors or form.non_field_errors %}
diff --git a/opentech/apply/funds/templates/funds/round.html b/opentech/apply/funds/templates/funds/round.html
index f9c01ba8e6df4e1fd3364fc6c376f83ce2ac56f4..db8010fbcb27e11a35626b7994e6314024ffcdce 100644
--- a/opentech/apply/funds/templates/funds/round.html
+++ b/opentech/apply/funds/templates/funds/round.html
@@ -1 +1,3 @@
-{% include "funds/fund_type.html" %}
+{% extends "funds/fund_type.html" %}
+
+{% block title %}{{ page.get_parent.title }}{% endblock %}