Skip to content

Commit

Permalink
Disable deletion since it's really unstable.
Browse files Browse the repository at this point in the history
  • Loading branch information
hellojwilde committed Sep 16, 2012
1 parent 493ffa9 commit 7717607
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/quiz/edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def main():
application = webapp.WSGIApplication([
('/quiz/add', AddHandler),
(r'/quiz/edit/(.*)', EditHandler),
(r'/quiz/delete/(.*)', DeleteHandler),
#(r'/quiz/delete/(.*)', DeleteHandler),
(r'/quiz/archive/(.*)', ArchiveHandler),
(r'/quiz/roster/(.*)', RosterHandler),
(r'/quiz/archived/(.*)', ArchivedHandler)
Expand Down
2 changes: 2 additions & 0 deletions templates/quiz_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,13 @@ <h3>
<span class="help-block">If the box is left unchecked, users can retake this test an infinite number of times.</span>
</div>

{% comment %}
{% if quiz %}
<div class="clearfix">
<p><a href="{{ quiz.link_delete }}">Delete</a></p>
</div>
{% endif %}
{% endcomment %}
</div>
</div>

Expand Down

0 comments on commit 7717607

Please sign in to comment.