37a02c1704
Show the same options for reviews on the dashboard and on review screens. Add title to all pages within the review section.
17 lines
529 B
HTML
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 %}
|