forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-15 21:49:16 -06:00
parent fe1643089f
commit 368611c1cf
2 changed files with 27 additions and 0 deletions

View File

@ -54,4 +54,21 @@
{% endif %}
</ul>
</div>
{% if v and (v.admin_level > 1 or v.alt) %}
<hr class="mt-6 mb-5 h-0.5 border-b border-gray-300 shadow-inset-t-white-05"/>
<div>
<h2 class="ml-2 font-bold text-lg font-heading leading-normal mb-2">Awards</h2>
<ul class="flex flex-row flex-wrap gap-2 mb-0">
{% if u.alts_unique.count() %}
{% for account in u.alts_unique %}
<li>
<a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}
</li>
{% endfor %}
{% else %}
<p class="italic text-gray-500 text-sm">No alts detected for this account...</p>
{% endif %}
</ul>
</div>
{% endif %}
</div>

View File

@ -223,6 +223,16 @@
{% endif %}
</div>
{% endif %}
{% if v and (v.admin_level > 1 or v.alt) %}
<p class="label">Alts:</p>
<ul class="mt-3 mb-0">
{% for account in u.alts_unique %}
<li>
<a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
{% endblock %}