diff options
Diffstat (limited to 'project/templates/talk/edit-talk.html')
-rw-r--r-- | project/templates/talk/edit-talk.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/project/templates/talk/edit-talk.html b/project/templates/talk/edit-talk.html new file mode 100644 index 0000000..5c0d99a --- /dev/null +++ b/project/templates/talk/edit-talk.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block title %}Edit Talk{% endblock %} + +{% block content %} +<h1>Edit Talk</h1> + +{% include '_errors.html' %} +<form action="{% url scipycon_edit_talk params.scope id %}" method="post"> + <fieldset> + <legend>Edit Talk</legend> + <table class="scipycon-default"> + {{ form }} + </table> + + <button class="button left" type="submit">Save Changes</button> + </fieldset> +</form> +{% endblock content %} |