Merged in [10685] from lars@netapp.com:
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.)
- Legacy-Id: 10689
Note: SVN reference [10685] has been migrated to Git commit 820d406e33
This commit is contained in:
parent
41c47b30ad
commit
1f4f9cc25d
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