Changeset - e5f87cce9029
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-10-01 17:27:41
lukeman@gmail.com
convert form to bootstrap
1 file changed with 5 insertions and 7 deletions:
0 comments (0 inline, 0 general)
symposion/templates/reviews/review_bulk_accept.html
Show inline comments
 
{% extends "reviews/base.html" %}
 

	
 
{% load uni_form_tags %}
 
{% load bootstrap_tags %}
 

	
 
{% block body %}
 

	
 
    <h1>Bulk Accept</h1>
 
    <form action="" method="POST" class="uniForm" accept-charset="utf-8">
 
        {% csrf_token %}
 
        <fieldset>
 
            {{ form|as_uni_form }}
 
            <div class="form_block">
 
                <input type="submit" name="submit" value="submit" />
 
            </div>
 
        </fieldset>
 
        {{ form|as_bootstrap }}
 
        <div class="form-actions">
 
            <input class="btn btn-primary" type="submit" name="submit" value="submit" />
 
        </div>
 
    </form>
 
{% endblock %}
0 comments (0 inline, 0 general)