{# templates/quick_info/quick_info_master_list.html #} {% extends "template_base.html" %} {% block title %}Quick Info Master Entries{% endblock %} {% block content %}

Quick Info Master Entries

Master entries are used by multiple ballot items. Quick info items are the entries that appear next to ballot items (info icon) with information about an office, candidate, or measure.

create new master entry     view quick info entries

{% csrf_token %} {# Kind of Ballot Item List #}
{# Language List #}
{% if quick_info_master_list %} {% for quick_info_master in quick_info_master_list %} {% endfor %}
ID Name Language Kind Text
{{ quick_info_master.we_vote_id }} {{ quick_info_master.master_entry_name }} {{ quick_info_master.language }} {{ quick_info_master.kind_of_ballot_item }} {{ quick_info_master.info_text }}

Export Quick Info Master Entries {# ,#} {# Import Quick Info#}

{% else %}

(no quick info items found)

{% endif %} {% endblock %}