rDrama/files/templates/userpage_blocking.html

28 lines
855 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
{% block pagetype %}userpage{% endblock %}
{% block title %}
2022-05-24 20:48:23 +00:00
<title>{{u.username}}</title>
2022-05-04 23:09:46 +00:00
{% endblock %}
{% block content %}
<div class="row no-gutters">
<div class="col-12">
<div class="text-center py-7 py-md-8">
2022-09-13 10:27:28 +00:00
<span class="fa-stack fa-2x text-muted mb-2">
2022-05-04 23:09:46 +00:00
<i class="fas fa-square text-danger opacity-25 fa-stack-2x"></i>
<i class="fas text-danger fa-user-cog fa-stack-1x text-lg"></i>
</span>
2022-10-29 00:52:11 +00:00
<h5>You are blocking @{{u.username}}.</h5>
2022-05-04 23:09:46 +00:00
<p class="text-muted">So we aren't going to show you their profile.</p>
<button type="button" class="btn btn-success text-success mt-2" onclick="postToastSwitch(this,'/settings/unblock?username={{u.username}}', true)"><i class="fas fa-eye text-success mr-2"></i>Unblock user</a>
2022-05-04 23:09:46 +00:00
</div>
</div>
</div>
{% endblock %}
{% block pagenav %}
{% endblock %}