Skip to content
Snippets Groups Projects
Commit cc9e31cc authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Allow submission of forms to the fund rather than round url

parent 3e2debb6
No related branches found
No related tags found
No related merge requests found
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
{% load wagtailcore_tags %} {% load wagtailcore_tags %}
{% block content %} {% 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 %} {% csrf_token %}
{% if form.errors or form.non_field_errors %} {% if form.errors or form.non_field_errors %}
......
{% include "funds/fund_type.html" %} {% extends "funds/fund_type.html" %}
{% block title %}{{ page.get_parent.title }}{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment