blob: 4a2189c9eb0dbf1a32b8d90872a7cc0794227493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% 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 %}
<p><a href='/papillon/poll/{{poll.base_url}}'>{{poll.name}}</a> {{poll.description}}</p>
{% endfor %}
{% endblock %}
|