{# templates/quick_info/quick_info_master_edit.html #} {% extends "template_base.html" %} {% block title %}{% if quick_info_master.id %}{{ quick_info_master.master_entry_name }}{% else %}New Quick Info Master Entry{% endif %}{% endblock %} {% block content %} < Back    

{% if quick_info_master.id %}Edit Master Entry '{{ quick_info_master.master_entry_name }}'{% else %}New Quick Info Master Entry{% endif %}

{% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %}

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.

1) What kind of ballot item?
{# Kind of Ballot Item List #}

2) Please name this master entry

3) Enter text for "quick info" popup



{% if quick_info_master.id %}

Quick Info Master We Vote ID: {{ quick_info_master.we_vote_id }}

{% endif %}

cancel

 

{% if quick_info_list %}

Quick Info Items Using this Master Entry

{% for quick_info in quick_info_list %} {% endfor %}
ID Ballot Item ID Ballot Item Kind Language Election
{{ quick_info.we_vote_id }} {{ quick_info.get_ballot_item_we_vote_id }} {{ quick_info.ballot_item_display_name }} {{ quick_info.get_kind_of_ballot_item }} {{ quick_info.language }} {{ quick_info.google_civic_election_id }}

{% else %}

(no quick info items found)

{% endif %} {% endblock %}