project/templates/talk/edit-talk.html
author Amit Sethi
Wed, 01 Dec 2010 19:45:16 +0530
changeset 328 f71e17a05344
parent 159 3b0045bbea1b
permissions -rw-r--r--
Fixed a link bug on accounts.html template enables editting talks

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