35 lines
949 B
HTML
35 lines
949 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block title %}
|
||
|
Ban an user from {{show.name}} - Episodes.Community
|
||
|
{% endblock %}
|
||
|
{% block content %}
|
||
|
<section class="show-details">
|
||
|
<div class="banner" style="background-image: url(/media/uploaded_resources/{{show.banner}});"></div>
|
||
|
<div class="banner-cover">
|
||
|
<div class="artwork">
|
||
|
<img src="/media/uploaded_resources/{{show.artwork}}">
|
||
|
</div>
|
||
|
<div class="details">
|
||
|
<h1>{{show.name}}</h1>
|
||
|
<p class="description">
|
||
|
{{show.description}}
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
<section class="submissions">
|
||
|
<a href="/show/{{show.abbr}}" class="button"><i class="fa fa-fw fa-home"></i> Show Index</a>
|
||
|
<h1>Ban an User</h1>
|
||
|
{% if error %}
|
||
|
<div class="message error">{{error}}</div>
|
||
|
{% endif %}
|
||
|
<form action="" method="post">
|
||
|
{% csrf_token %}
|
||
|
<p>Banning user <b>{{ target.display_name }}</b></p>
|
||
|
{{ form }}
|
||
|
<input type="submit" value="Submit" />
|
||
|
</form>
|
||
|
</div>
|
||
|
</section>
|
||
|
{% endblock %}
|