Skip to content

Commit 1a5a7b9

Browse files
committed
Show the ballot question on the position entry form.
- Legacy-Id: 4550
1 parent 8b5d95e commit 1a5a7b9

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

ietf/idrfc/views_ballot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ def edit_positionREDESIGN(request, name, ballot_id):
222222
return_to_url=return_to_url,
223223
old_pos=old_pos,
224224
ballot_deferred=ballot_deferred,
225+
ballot = ballot,
225226
show_discuss_text=old_pos and old_pos.pos_id=="discuss",
226227
blocking_positions=simplejson.dumps(blocking_positions),
227228
),

ietf/templates/idrfc/edit_positionREDESIGN.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,17 @@
3030
form.position-form .comment-text {
3131
margin-top: 20px;
3232
}
33+
div.question {
34+
font-size: 173%;
35+
padding-left: 5px;
36+
padding-bottom: 10px;
37+
}
3338
{% endblock %}
3439

3540
{% block content %}
36-
<h1>Change position for {{ ad.plain_name }} {{ doc }}</h1>
41+
<h1>Change position for {{ ad.plain_name }} on {{ doc }}</h1>
42+
43+
<div class="question">{{ ballot.ballot_type.question }}</div>
3744

3845
{% if ballot_deferred %}
3946
<div class="ballot-deferred">Ballot deferred by {{ ballot_deferred.by }} on {{ ballot_deferred.time|date:"Y-m-d" }}.</div>

0 commit comments

Comments
 (0)