rDrama/files/templates/userpage_private.html

56 lines
1.8 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>
2022-01-07 21:44:38 +00:00
{% if u.id == LLM_ID %}
2021-12-14 22:48:37 +00:00
{% if v and v.coins > 500 and not v.is_suspended %}
2021-12-30 20:56:20 +00:00
<a class="btn btn-primary" role="button", onclick="post_toast('/pay_rent', '1')">Pay rent to view profile (500 coins)</a>
2021-12-14 22:48:37 +00:00
{% endif %}
<pre></pre>
{% if v and v.coins > 5000 and time - v.created_utc > 604800 and not v.is_suspended %}
2021-12-30 20:56:20 +00:00
<a class="btn btn-primary" role="button", onclick="post_toast('/steal', '1')">Attempt to steal coins</a>
2021-12-14 22:48:37 +00:00
<div class="text-small-extra text-muted mt-1">Landlords, like all other men, love to reap where they never sowed.</div>
{% endif %}
<pre>
</pre>
2021-10-15 14:08:27 +00:00
{% endif %}
</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-02-11 23:32:14 +00:00
<script src="/static/assets/js/userpage_v.js?a=241"></script>
2021-12-17 06:02:46 +00:00
<div id="username" class="d-none">{{u.username}}</div>
{% endif %}
2022-02-02 00:06:29 +00:00
<script src="/static/assets/js/userpage.js?a=240"></script>
2021-12-02 19:58:56 +00:00
{% endblock %}