Mercurial > public > sg101
annotate gpp/templates/polls/index.html @ 201:bc958bc3c6eb
Futzing with CSS side blocks
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 12 Apr 2010 02:56:31 +0000 |
parents | dbd703f7d63a |
children | ac9217eef610 |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'base.html' %} |
gremmie@1 | 2 {% load comment_tags %} |
gremmie@1 | 3 {% block title %}Polls{% endblock %} |
gremmie@1 | 4 {% block content %} |
gremmie@1 | 5 <h2>Polls</h2> |
gremmie@1 | 6 <h3>Current Polls</h3> |
gremmie@1 | 7 {% if current_polls %} |
gremmie@1 | 8 <ul> |
gremmie@1 | 9 {% for poll in current_polls %} |
gremmie@1 | 10 <li><a href="{{ poll.get_absolute_url }}">{{ poll.question }}</a> • |
gremmie@1 | 11 {% get_comment_count for poll as comment_count %} |
gremmie@1 | 12 {{ comment_count }} comment{{ comment_count|pluralize }} • |
gremmie@1 | 13 {{ poll.start_date|date:"M d, Y" }} |
gremmie@1 | 14 {% if poll.end_date %} |
gremmie@1 | 15 - {{ poll.end_date|date:"M d, Y" }} |
gremmie@1 | 16 {% endif %} |
gremmie@1 | 17 </li> |
gremmie@1 | 18 {% endfor %} |
gremmie@1 | 19 </ul> |
gremmie@1 | 20 {% else %} |
gremmie@1 | 21 <p>No open polls at this time.</p> |
gremmie@1 | 22 {% endif %} |
gremmie@1 | 23 <h3>Closed Polls</h3> |
gremmie@1 | 24 {% if old_polls %} |
gremmie@1 | 25 <ul> |
gremmie@1 | 26 {% for poll in old_polls %} |
gremmie@1 | 27 <li><a href="{{ poll.get_absolute_url }}">{{ poll.question }}</a> • |
gremmie@1 | 28 {% get_comment_count for poll as comment_count %} |
gremmie@1 | 29 {{ comment_count }} comment{{ comment_count|pluralize }} • |
gremmie@1 | 30 {{ poll.start_date|date:"M d, Y" }} - |
gremmie@1 | 31 {{ poll.end_date|date:"M d, Y" }}</li> |
gremmie@1 | 32 {% endfor %} |
gremmie@1 | 33 </ul> |
gremmie@1 | 34 {% else %} |
gremmie@1 | 35 <p>No closed polls at this time.</p> |
gremmie@1 | 36 {% endif %} |
gremmie@1 | 37 {% endblock %} |