changeset 1 | fda1c66b25f9 |
child 96 | 178b89a3ca4f |
0:9a77edda77b7 | 1:fda1c66b25f9 |
---|---|
1 {% extends "base.html" %} |
|
2 |
|
3 {% block title %}Edit Talk{% endblock %} |
|
4 |
|
5 {% block content %} |
|
6 <h1>Edit Talk</h1> |
|
7 |
|
8 {% include '_errors.html' %} |
|
9 <form action="{% url kiwipycon_edit_talk id %}" |
|
10 method="post"> |
|
11 <fieldset> |
|
12 <legend>Edit Talk</legend> |
|
13 <table class="kiwipycon-default"> |
|
14 {{ form }} |
|
15 </table> |
|
16 <button class="button left" |
|
17 type="submit"> |
|
18 Save Changes |
|
19 </button> |
|
20 </fieldset> |
|
21 </form> |
|
22 {% endblock content %} |
|
23 |