forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-10 00:21:01 -06:00
parent 0f3deafecc
commit 510554e8db
1 changed files with 5 additions and 3 deletions

View File

@ -10,16 +10,18 @@
<div class="modal-body flex flex-col space-y-4">
<div class="p-4 rounded bg-gray-300 border border-gray-400 shadow-inset-t-white-10">
{% if v and v.admin_level > 1 %}
<p>True score: {{u.truecoins}}</p>
<strong class="label">True score:</strong>{{u.truecoins}}
{% if u.is_private %}
<p>User has private mode enabled.</p>
{% endif %}
{% endif %}
{% if v and (v.admin_level > 1 or v.alt) %}
<span>Alts:</span>
<storng class="label">Alts:</span>
<ul>
{% for account in u.alts_unique %}
<li><a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}</li>
<li>
<a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}