project/templates/talk/edit-talk.html
author Parth buch <parth.buch.115@gmail.com>
Thu, 24 Nov 2011 09:39:22 +0530
branch2011
changeset 450 c4e4cee8b99a
parent 159 3b0045bbea1b
permissions -rw-r--r--
replaced the usernames with real names on the conf schedule page

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