{# vim: set ft=htmljinja #} Agenda {% set event_labels = { "next_economist": "The Economist", "mothers_day": "Mothers' day", "fathers_day": "Fathers' day", "uk_financial_year_end": "End of financial year", "bank_holiday": "UK bank holiday", "us_holiday": "US holiday", "uk_clock_change": "UK clock change", "us_clock_change": "US clock change", "next_us_presidential_election": "US pres. election", "xmas_last_second": "Christmas last posting 2nd class", "xmas_last_first": "Christmas last posting 1st class", "xmas_day": "Christmas day", "next_up_series": "Next Up documentary", } %}

Agenda

{% for event in events %} {% endfor %}
{{event.date.strftime("%a, %d, %b %Y")}} {{ event_labels.get(event.name) or event.name }} {%- if "title" in event -%}: {{ event.title }}{% endif %} {{ days(event.date) }}

Stock markets

{% for market in stock_markets %}

{{ market }}

{% endfor %}

Space launches

{% for launch in rockets %} {% endfor %}
{{ launch.t0_date }} {% if launch.t0_time %}
{{ launch.t0_time }}{% endif %}
{{ launch.status.abbrev }} {{ launch.rocket }} — {{launch.mission.name }} — {% if launch.launch_provider_abbrev %} {{ launch.launch_provider_abbrev }} {% else %} {{ launch.launch_provider }} {% endif %} ({{ launch.launch_provider_type }}) — {{ launch.orbit.name }} ({{ launch.orbit.abbrev }})
{{ launch.pad_name }} — {{ launch.location }}
{% for line in launch.mission.description.splitlines() %}

{{ line }}

{% endfor %}
{{ events | pprint }}