Skip to content

Commit 3814b60

Browse files
committed
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 Commit ready for merge - Legacy-Id: 6413
1 parent 7c4cf70 commit 3814b60

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)