Mercurial > public > sg101
comparison gpp/templates/polls/poll_vote.html @ 312:88b2b9cb8c1f
Fixing #142; cut over to the django.contrib.staticfiles app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 02:56:10 +0000 |
parents | daa2916f5b34 |
children | 1f139de929c4 |
comparison
equal
deleted
inserted
replaced
311:b1c39788e511 | 312:88b2b9cb8c1f |
---|---|
1 {% extends 'base.html' %} | 1 {% extends 'base.html' %} |
2 {% load url from future %} | 2 {% load url from future %} |
3 {% block title %}Polls: {{ poll.question }}{% endblock %} | 3 {% block title %}Polls: {{ poll.question }}{% endblock %} |
4 {% block custom_css %} | 4 {% block custom_css %} |
5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/polls.css" /> | 5 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/polls.css" /> |
6 {% endblock %} | 6 {% endblock %} |
7 {% block content %} | 7 {% block content %} |
8 <h2>Poll</h2> | 8 <h2>Poll</h2> |
9 <h3>{{ poll.question }}</h3> | 9 <h3>{{ poll.question }}</h3> |
10 <form action="." method="post">{% csrf_token %} | 10 <form action="." method="post">{% csrf_token %} |