equal
deleted
inserted
replaced
4 |
4 |
5 {% block content %} |
5 {% block content %} |
6 <h1>Edit Talk</h1> |
6 <h1>Edit Talk</h1> |
7 |
7 |
8 {% include '_errors.html' %} |
8 {% include '_errors.html' %} |
9 <form action="{% url scipycon_edit_talk id %}" |
9 <form action="{% url scipycon_edit_talk id params.scope %}" method="post"> |
10 method="post"> |
|
11 <fieldset> |
10 <fieldset> |
12 <legend>Edit Talk</legend> |
11 <legend>Edit Talk</legend> |
13 <table class="scipycon-default"> |
12 <table class="scipycon-default"> |
14 {{ form }} |
13 {{ form }} |
15 </table> |
14 </table> |
16 <button class="button left" |
15 |
17 type="submit"> |
16 <button class="button left" type="submit">Save Changes</button> |
18 Save Changes |
|
19 </button> |
|
20 </fieldset> |
17 </fieldset> |
21 </form> |
18 </form> |
22 {% endblock content %} |
19 {% endblock content %} |
23 |
|