blob: 09088510b2c3af7a5536d4cbb133b21328b9126b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h2>{{category.name}}</h2>
<p>{{category.description}}</p>
{% if polls %}<h2>{%trans "Polls"%}</h2>{%endif%}
{% for poll in polls %}
<div class='poll-description'>
<p><a href='{{root_url}}poll/{{poll.base_url}}'>{{poll.name}}</a></p>
<p>{{poll.description}}</p>
</div>
{% endfor %}
{% endblock %}
|