fix more templating errors
parent
efd63b8666
commit
b9b084ca1e
|
@ -39,12 +39,11 @@
|
|||
{% for user in lb.all_users %}
|
||||
{% if v.id == user.id %}
|
||||
{% set style="class=\"self\"" %}
|
||||
{% set has_seen_v=true %}
|
||||
{% endif %}
|
||||
{{format_user_in_table(user, style, loop.index, lb.value_func(user))}}
|
||||
{{format_user_in_table(user, style, loop.index, lb.value_func(user), lb.user_relative_url)}}
|
||||
{% endfor %}
|
||||
{% if position or not has_seen_v %}
|
||||
{{format_user_in_table(v, "style=\"border-top:2px solid var(--primary)\"", lb.v_position, lb.v_value)}}
|
||||
{% if lb.v_position %}
|
||||
{{format_user_in_table(v, "style=\"border-top:2px solid var(--primary)\"", lb.v_position, lb.v_value, lb.user_relative_url)}}
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue