rDrama/files/templates/userpage_blocking.html

31 lines
829 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block pagetype %}userpage{% endblock %}
{% block fixedMobileBarJS %}
{% endblock %}
{% block title %}
2022-01-03 10:32:31 +00:00
<title><span {% if u.patron %}class="patron" style="background-color:#{{u.namecolor}}"{% endif %}>{{u.username}}</span></title>
2021-12-27 05:07:19 +00:00
2021-10-15 14:08:27 +00:00
{% endblock %}
{% block content %}
<div class="row no-gutters">
<div class="col-12">
<div class="text-center py-7 py-md-8">
<span class="fa-stack fa-2x text-muted mb-4">
<i class="fas fa-square text-danger opacity-25 fa-stack-2x"></i>
2021-11-26 19:28:55 +00:00
<i class="fas text-danger fa-user-cog fa-stack-1x text-lg"></i>
2021-10-15 14:08:27 +00:00
</span>
<h2 class="h5">You are blocking @{{u.username}}.</h2>
<p class="text-muted">So we aren't going to show you their profile.</p>
</div>
</div>
</div>
{% endblock %}
{% block pagenav %}
{% endblock %}