forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-15 21:49:45 -06:00
parent 368611c1cf
commit 86e303ee0f
1 changed files with 5 additions and 9 deletions

View File

@ -59,15 +59,11 @@
<div> <div>
<h2 class="ml-2 font-bold text-lg font-heading leading-normal mb-2">Awards</h2> <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"> <ul class="flex flex-row flex-wrap gap-2 mb-0">
{% if u.alts_unique.count() %} {% for account in u.alts_unique %}
{% for account in u.alts_unique %} <li>
<li> <a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}
<a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %} </li>
</li> {% endfor %}
{% endfor %}
{% else %}
<p class="italic text-gray-500 text-sm">No alts detected for this account...</p>
{% endif %}
</ul> </ul>
</div> </div>
{% endif %} {% endif %}