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