forked from rDrama/rDrama
1
0
Fork 0

fix more templating errors

master
justcool393 2022-10-28 04:51:41 -05:00
parent efd63b8666
commit b9b084ca1e
1 changed files with 3 additions and 4 deletions

View File

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