17 lines
374 B
HTML
Executable file
17 lines
374 B
HTML
Executable file
{% extends "bases/bootstrap-with-nav.html" %}
|
|
{% load staticfiles %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
<h1>Vote on {{poll.question_text}}</h1>
|
|
{% load crispy_forms_tags %}
|
|
<form method="post" action="" class="">
|
|
{% crispy vote_form %}
|
|
<input class="btn btn-default" type="submit" value="Submit"/>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|