2012-08-14 07:49:57 +00:00
|
|
|
{% extends "reviews/base.html" %}
|
|
|
|
|
2012-10-01 17:27:28 +00:00
|
|
|
{% load bootstrap_tags %}
|
2012-08-14 07:49:57 +00:00
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
<h1>Bulk Accept</h1>
|
|
|
|
<form action="" method="POST" class="uniForm" accept-charset="utf-8">
|
|
|
|
{% csrf_token %}
|
2012-10-01 17:27:28 +00:00
|
|
|
{{ form|as_bootstrap }}
|
|
|
|
<div class="form-actions">
|
|
|
|
<input class="btn btn-primary" type="submit" name="submit" value="submit" />
|
|
|
|
</div>
|
2012-08-14 07:49:57 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|