forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-31 22:20:01 +02:00
parent a9eac65726
commit fcf9e1486b
1 changed files with 14 additions and 14 deletions

View File

@ -532,24 +532,24 @@
<input type="hidden" name="user" value="{{u.username}}">
<input type="submit" class="btn btn-danger" value="Remove User's Content">
</form>
{% endif %}
<pre></pre>
<p>User ID: {{u.id}}</p>
{% if v.admin_level > 1 %}
{% if u.is_private %}
<p>User has private mode enabled.</p>
{% endif %}
<span>Alts:</span>
<ul>
{% for account in u.alts %}
<li><a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}</li>
{% endfor %}
</ul>
{% endif %}
{% endif %}
<pre></pre>
<p>User ID: {{u.id}}</p>
{% if v.admin_level > 1 %}
{% if u.is_private %}
<p>User has private mode enabled.</p>
{% endif %}
<span>Alts:</span>
<ul>
{% for account in u.alts %}
<li><a href="{{account.url}}">@{{account.username}}</a>{% if account._is_manual %} [m]{% endif %}</li>
{% endfor %}
</ul>
{% endif %}
{% if u.is_suspended %}
<p>Banned by: <a href="{{u.banned_by.url}}">@{{u.banned_by.username}}</a></p>
{% endif %}
{% endif %}