project/templates/talk/edit-talk.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 20 Jul 2010 19:23:40 +0530
changeset 123 d4799b7159e4
parent 96 178b89a3ca4f
child 159 3b0045bbea1b
permissions -rw-r--r--
Add scope for all the URLs and adjust the formatting and indentation.

{% extends "base.html" %}

{% block title %}Edit Talk{% endblock %}

{% block content %}
<h1>Edit Talk</h1>

{% include '_errors.html' %}
<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>
    </fieldset>
</form>
{% endblock content %}