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 %}
|
||||
<td {% if pos %}class="changebar position-{{pos.slug}}"{% endif %}></td>
|
||||
{% endwith %}
|
||||
{% else %}
|
||||
<td></td>
|
||||
{% endif %}
|
||||
|
||||
</tr>
|
||||
|
|
|
@ -34,6 +34,10 @@
|
|||
</th>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
{% if color_row_positions %}
|
||||
<th class="sorter-false"></th>
|
||||
{% endif %}
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
@ -43,7 +47,11 @@
|
|||
<tbody>
|
||||
<tr class="info">
|
||||
<th></th>
|
||||
{% 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 }}
|
||||
</th>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in a new issue