templates/edit_question.html
author nishanth
Fri, 02 Jul 2010 14:26:41 +0530
changeset 88 281c4bcf848f
parent 86 404e9c1b8cff
permissions -rw-r--r--
now editing question is complete.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
86
404e9c1b8cff now questions are displayed properly in edit_question page. hav to implement the submit and stuff
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
404e9c1b8cff now questions are displayed properly in edit_question page. hav to implement the submit and stuff
nishanth
parents:
diff changeset
     2
{% block content %}
88
281c4bcf848f now editing question is complete.
nishanth
parents: 86
diff changeset
     3
<form method=post action="">
86
404e9c1b8cff now questions are displayed properly in edit_question page. hav to implement the submit and stuff
nishanth
parents:
diff changeset
     4
{{form.as_p}}
88
281c4bcf848f now editing question is complete.
nishanth
parents: 86
diff changeset
     5
<input type=submit value=Update>
281c4bcf848f now editing question is complete.
nishanth
parents: 86
diff changeset
     6
</form>
86
404e9c1b8cff now questions are displayed properly in edit_question page. hav to implement the submit and stuff
nishanth
parents:
diff changeset
     7
{% endblock %}