symposion_app/pinaxcon/templates/symposion/reviews/review_bulk_accept.html
Sachi King 1886323d74 Bootstrapification
Boot custom CSS, and put some base, standard css in its place.
Shame I did not start with fresh Bootstrap4, but oh well.

Some more templates could be made to make this less messy, which would
be good.
2017-04-16 16:30:45 +10:00

15 lines
428 B
HTML

{% extends "symposion/reviews/base.html" %}
{% load bootstrap %}
{% block body %}
<h1>Bulk Accept</h1>
<form class="form-horizontal" action="" method="POST" class="uniForm" accept-charset="utf-8">
{% csrf_token %}
{{ form|bootstrap }}
<div class="form-actions">
<input class="btn btn-primary" type="submit" name="submit" value="submit" />
</div>
</form>
{% endblock %}