
* removes profile songs (ref #470) * Remove ffmpeg, remaining song subsystem - Remove references to User.song in userpage* templates - Generate migration to drop column - Remove ffmpeg dependency in Docker * remove python 2 era __future__ import --------- Co-authored-by: TLSM <duolsm@outlook.com>
28 lines
811 B
HTML
28 lines
811 B
HTML
{% extends "userpage.html" %}
|
|
|
|
|
|
{% block content %}
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block pagenav %}
|
|
|
|
{% if v %}
|
|
<div id='tax' class="d-none">{% if v.patron or u.patron %}0{% else %}0.03{% endif %}</div>
|
|
<script src="{{ 'js/userpage_v.js' | asset }}"></script>
|
|
<div id="username" class="d-none">{{u.username}}</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|