{% extends "base/base.html" %} {% import "widgets/poll.html" as poll_widget with context %} {% block title %}

Gestion des sondages

{% endblock %} {% block content %}

Tous les sondages

{% for p in polls %} {{ poll_widget.wpoll(p) }} Auteur : {{ p.author.name }} | Supprimer le sondage {% endfor %}
{% endblock %}