Removed obsolete help text for old ballot page

- Legacy-Id: 2169
This commit is contained in:
Pasi Eronen 2010-03-21 14:54:24 +00:00
parent 814e31710e
commit 5277c63b9b
3 changed files with 0 additions and 24 deletions

View file

@ -1,7 +1,6 @@
200 /idtracker/help/state/
200 /idtracker/help/state/12/
200 /idtracker/help/substate/1/
200 /idtracker/help/ballot/
200 /idtracker/help/evaluation/
200 /idtracker/status/
200 /idtracker/status/last-call/

View file

@ -7,7 +7,6 @@ from django.views.generic.simple import redirect_to
urlpatterns = patterns('django.views.generic.simple',
(r'^help/state/$', 'direct_to_template', { 'template': 'idtracker/states.html', 'extra_context': { 'states': IDState.objects.all(), 'substates': IDSubState.objects.all() } }),
(r'^help/ballot/$', 'direct_to_template', { 'template': 'idtracker/view_key.html' }),
(r'^help/evaluation/$', 'direct_to_template', { 'template': 'idtracker/view_evaluation_desc.html' }),
)
urlpatterns += patterns('',

View file

@ -1,22 +0,0 @@
{# Copyright The IETF Trust 2007, All Rights Reserved #}{% extends "base.html" %}
{% block content %}
<h1 class="first">Key file</h1>
<pre>
Key to how the Secretariat has historically recorded Evaluations:
- A single X in one of the four columns has the obvious meaning.
- A '.' (period mark) in a column indicates a change from a previous
selection. I.e., A '.' in "discuss" and an X in "yes" indicates a
change from discuss to yes.
- an "R" in the Abstain column means "Recuse"
- a "D" in the Discuss column indicates "Defer"
</pre>
<form action=".">
<input type="button" value="Back" onClick="history.go(-1);"/>
</form>
{% endblock %}