symposion_app/pinaxcon/templates/symposion/reviews/review_bulk_update.html
Joel Addison 37a02c1704 Update review pages
Show the same options for reviews on the dashboard and on review screens.
Add title to all pages within the review section.
2019-10-14 21:26:49 +10:00

17 lines
529 B
HTML

{% extends "symposion/reviews/base.html" %}
{% load bootstrap %}
{% block head_title %}Reviews - Bulk Accept ({{ section_slug }}){% endblock %}
{% block body %}
<h1>Bulk Accept ({{ section_slug }})</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 %}