{{ SITE_META.site_name }}
|
|
{{ SITE_META.site_desc }}
Notifications about your Councilmatic Subscriptions
{{ SITE_META.site_name }} has updates! This email provides information about your subscriptions to council members, committee actions, committee events, bill searches, bill actions, and meetings.
{% if person_updates %}
{{ CITY_VOCAB.COUNCIL_MEMBER }} Notifications
{% for update in person_updates %}
{% for update_type, person in update.items %}
Bill |
{% if 'Sponsorship' in update_type %}
Description |
{% else %}
Action |
{% endif %}
{% for bill in person.bills %}
{{bill.identifier}}
|
{% if bill.action_description %}
{{ bill.action_date|date:"M j, Y"}}: {{ bill.action_description }}
{% else %}
{{ bill.description }}
{% endif %}
|
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% if committee_action_updates %}
{% for committee in committee_action_updates %}
{{ committee.name }} Notifications
{% for bill in committee.bills %}
{% endfor %}
{% endfor %}
{% endif %}
{% if committee_event_updates %}
Committee Event Notifications
{% for committee in committee_event_updates %}
{{ committee.name }}
Event |
Date |
Description |
{% for event in committee.events %}
{{ event.name }}
|
{{event.start_time|date:"M j, Y fa"}}
|
{{ event.description }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if bill_search_updates %}
Bill Search Notifications
{% for search in bill_search_updates %}
Term: {{ search.params.term }}
{% if search.params.facets %}
Selected facets:
{% for facet, values in search.params.facets.items %}
{{ facet }}: {% for value in values %}{{ value }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endfor%}
{% endif %}
Bill |
Description |
{% for bill in search.bills %}
{{bill.identifier}}
|
{{ bill.description }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if bill_action_updates %}
Bill Action Notifications
Bill |
Action |
{% for bill, action in bill_action_updates %}
{{bill.identifier}}
|
{{action.date|date:"M j, Y"}}: {{action.description}}
|
{% endfor %}
{% endif %}
{% if new_events %}
New meetings
Event |
Location |
Time |
{% for event in new_events %}
{{ event.name }}
|
{{ event.location_name }}
|
{% if event.all_day %}
All Day
{% else %}
{{ event.start_time|date:"M/j/Y fa" }} {% if event.end_time %}- {{ event.end_time|date:"M/j/Y fa" }} {% endif %}
{% endif %}
|
{% endfor %}
{% endif %}
{% if updated_events %}
Updated meetings
Event |
Location |
Time |
{% for event in updated_events %}
{{ event.name }}
|
{{ event.location_name }}
|
{% if event.all_day %}
All Day
{% else %}
{{ event.start_time|date:"M/j/Y fa" }} {% if event.end_time %}- {{ event.end_time|date:"M/j/Y fa" }} {% endif %}
{% endif %}
|
{% endfor %}
{% endif %}
Want to receive fewer or more notifications? Visit your account and manage alert preferences.