{% extends "constellation_base/base.html" %} {% load guardian_tags %} {% block title %}Vote | List {{ list_type }}{% endblock %} {% block head %} {{ block.super }} {% load static %} {% endblock %} {% block content %}

Polls

{% if perms.constellation_vote.add_poll %}
{% endif %}
{% for item in polls %}
{{ item.title }} {% if item.ends is not None %}  Closes: {{ item.ends }} {% endif %} {% get_obj_perms request.user for item as "poll_perms" %} {% if "poll_owned_by" in poll_perms %} edit {% endif %} {% if item.results_visible or "poll_owned_by" in poll_perms %} poll {% endif %}
{% empty %} There are no polls at this time. {% endfor %}
{% endblock %}