Skip to content

Commit 3e668a1

Browse files
committed
Merged [6413] from rjsparks@nostrum.com:
Removed redundant call to not_duplicated from the nomcom/private_index template It was already applied in the view, and interacted badly with the list comprehension method of filtering for NomineePositions that had associated questionnaire responses. Fixes bug 1151. - Legacy-Id: 6415 Note: SVN reference [6413] has been migrated to Git commit 3814b60
1 parent e24f975 commit 3e668a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/templates/nomcom/private_index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ <h3>Select Filters</h3>
103103
<th>State</th>
104104
<th>Questionnaire response</th>
105105
</tr>
106-
{% for np in nominee_positions.not_duplicated %}
106+
{% for np in nominee_positions %}
107107
<tr class="{{ forloop.counter|divisibleby:2|yesno:"oddrow,evenrow" }}">
108108
{% if is_chair %}
109109
<td><input class="batch-select" type="checkbox" value="{{ np.id }}" name="selected"/></td>
@@ -123,4 +123,4 @@ <h3>Select Filters</h3>
123123
{% endif %}
124124
</div
125125

126-
{% endblock %}
126+
{% endblock %}

0 commit comments

Comments
 (0)