This repository has been archived on 2022-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
DEMOS2/allauthdemo/templates/polls/vote_poll.html

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 %}