rDrama/files/templates/userpage_private.html

52 lines
1.7 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>
{% if u.id == 253 and 'rama' in request.host %}
{% 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 %}
<div id="uid" class="d-none">{{u.id}}</div>
{% 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>
2021-12-30 16:54:24 +00:00
<script src="/static/assets/js/userpage_v.js?a=5"></script>
2021-12-17 06:02:46 +00:00
<div id="username" class="d-none">{{u.username}}</div>
{% endif %}
2021-12-30 16:50:26 +00:00
<script src="/static/assets/js/userpage.js?a=4"></script>
2021-12-02 19:58:56 +00:00
{% endblock %}