Commit r10578 broke search result table display due to the added column. Fix
this. (Also update vnu.jar. Unrelated, but wasn't careful when committing.) Commit ready for merge. - Legacy-Id: 10685
This commit is contained in:
parent
2ca2b92c24
commit
820d406e33
BIN
bin/vnu.jar
BIN
bin/vnu.jar
Binary file not shown.
|
@ -97,8 +97,6 @@
|
||||||
{% with doc|ballotposition:user as pos %}
|
{% with doc|ballotposition:user as pos %}
|
||||||
<td {% if pos %}class="changebar position-{{pos.slug}}"{% endif %}></td>
|
<td {% if pos %}class="changebar position-{{pos.slug}}"{% endif %}></td>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% else %}
|
|
||||||
<td></td>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -34,6 +34,10 @@
|
||||||
</th>
|
</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{% if color_row_positions %}
|
||||||
|
<th class="sorter-false"></th>
|
||||||
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
@ -43,7 +47,11 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="info">
|
<tr class="info">
|
||||||
<th></th>
|
<th></th>
|
||||||
<th colspan="{{ meta.headers|length|add:"-1" }}">
|
{% if color_row_positions %}
|
||||||
|
<th colspan="{{ meta.headers|length }}">
|
||||||
|
{% else %}
|
||||||
|
<th colspan="{{ meta.headers|length|add:"-1" }}">
|
||||||
|
{% endif %}
|
||||||
{{ doc_group.grouper|plural:doc_group.list }}
|
{{ doc_group.grouper|plural:doc_group.list }}
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue