{% extends "wlpoll/base.html" %} {% comment %} vim:ft=htmldjango {% endcomment %} {% load wlprofile_extras wlpoll_extras %} {% load comments %} {% load threadedcomments_tags custom_date %} {% block title %}{{ object.name }} - {{ block.super }}{% endblock %} {% block content %} {% if perms.wlpoll %}
{% if perms.wlpoll.poll_can_add %}Add New Poll{% endif %} {% if perms.wlpoll.poll_can_edit %}| Edit{% endif %} {% if perms.wlpoll.poll_can_delete %}| Delete{% endif %}
{% endif %}

Poll: {{ object.name }}

{% display_poll object %}
{% get_comment_count for object as ccount %} {{ ccount }} comments, {{object.total_votes}} votes Posted on {{ object.pub_date|custom_date:user }}

Comments on this Poll:

{% include "threadedcomments/inlines/comments.html" %}
{% endblock %}