rDrama/files/templates/userpage_private.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "userpage.html" %}
2021-12-14 22:48:37 +00:00
2021-10-15 14:08:27 +00:00
{% block content %}
2021-12-14 22:48:37 +00:00
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-3">
<span class="fa-stack fa-2x text-muted mb-4">
<i class="fas fa-square text-gray-500 opacity-25 fa-stack-2x"></i>
<i class="fas text-gray-500 fa-user-lock fa-stack-1x text-lg"></i>
</span>
<h2 class="h5">This account is private</h2>
<p class="text-muted">This user has enabled private mode to cloak their posting history.</p>
2021-10-15 14:08:27 +00:00
</div>
</div>
</div>
2021-12-17 07:06:25 +00:00
{% if u.song %}
2022-01-23 18:16:53 +00:00
{% if v and v.id == u.id %}
<div id="v_username" class="d-none">{{v.username}}</div>
{% else %}
<div id="u_username" class="d-none">{{u.username}}</div>
{% endif %}
2021-12-17 07:06:25 +00:00
{% endif %}
2021-10-15 14:08:27 +00:00
{% endblock %}
2021-12-02 19:58:56 +00:00
{% block pagenav %}
2021-12-17 06:02:46 +00:00
{% if u.song %}
<div id="uid" class="d-none">{{u.id}}</div>
{% endif %}
{% if v %}
<div id='tax' class="d-none">{% if v.patron or u.patron %}0{% else %}0.03{% endif %}</div>
2022-03-31 16:28:53 +00:00
<script src="/assets/js/userpage_v.js?v=244"></script>
2021-12-17 06:02:46 +00:00
<div id="username" class="d-none">{{u.username}}</div>
{% endif %}
2022-03-31 16:28:53 +00:00
<script src="/assets/js/userpage.js?v=241"></script>
2021-12-02 19:58:56 +00:00
{% endblock %}