diff options
Diffstat (limited to 'project/templates/talk/edit-talk.html')
-rw-r--r-- | project/templates/talk/edit-talk.html | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/project/templates/talk/edit-talk.html b/project/templates/talk/edit-talk.html index 5f4ce97..4d93bdd 100644 --- a/project/templates/talk/edit-talk.html +++ b/project/templates/talk/edit-talk.html @@ -6,18 +6,14 @@ <h1>Edit Talk</h1> {% include '_errors.html' %} -<form action="{% url scipycon_edit_talk id %}" - method="post"> +<form action="{% url scipycon_edit_talk id params.scope %}" method="post"> <fieldset> - <legend>Edit Talk</legend> - <table class="scipycon-default"> - {{ form }} - </table> - <button class="button left" - type="submit"> - Save Changes - </button> + <legend>Edit Talk</legend> + <table class="scipycon-default"> + {{ form }} + </table> + + <button class="button left" type="submit">Save Changes</button> </fieldset> </form> {% endblock content %} - |