{% extends 'base.html' %}
{% load base_extras %}
{% load ui_extras %}
{% block content %}
{% if show_ballots %}
{% if cast_ballot_url %}
Cast a ballot
{% else %}
You cannot vote on this target
{% endif %}
{% include "santa/_ballot_list.html" %}
{% endif %}
{% if show_rules %}
{% if perms.santa.add_rule and add_rule_links %}
{% endif %}
{% if rule_count %}
| Configuration |
Ruleset |
Policy |
{% for rule in rules %}
|
{% if perms.santa.view_rule %}
{{ rule.configuration }}
{% else %}
{{ rule.configuration }}
{% endif %}
|
{{ rule.ruleset|default:"-" }} |
{{ rule.get_policy_display }}
|
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}