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:
Lars Eggert 2016-01-14 10:55:03 +00:00
parent 2ca2b92c24
commit 820d406e33
3 changed files with 9 additions and 3 deletions

Binary file not shown.

View file

@ -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>

View file

@ -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>
<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 }}
</th>
</tr>