project/templates/talk/edit-talk.html
author Parth buch <parth.buch.115@gmail.com>
Sat, 01 Oct 2011 03:59:03 +0530
branch2011
changeset 429 cde70fd3073c
parent 159 3b0045bbea1b
permissions -rw-r--r--
changed the handler404 and handler500 to a custom view, passing scope to get proper formed urls when displaying 404 and 500 pages

{% 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 %}