Agenda
← personal tools
|
travel
|
conference
|
gaps
- Today is {{now.strftime("%A, %-d %b %Y")}}
{% if gbpusd %}
- GBPUSD: {{"{:,.3f}".format(gbpusd)}}
{% endif %}
- GWR advance ticket furthest date:
{% if gwr_advance_tickets %}
{{ gwr_advance_tickets.strftime("%A, %-d %b %Y") }}
{% else %}
unknown
{% endif %}
- Bristol Sunrise: {{ sunrise.strftime("%H:%M:%S") }} /
Sunset: {{ sunset.strftime("%H:%M:%S") }}
Stock markets
{% for market in stock_markets %}
{{ market }}
{% endfor %}
Agenda
{% for event in events if event.as_date >= two_weeks_ago %}
{% if loop.first or event.date.year != loop.previtem.date.year or event.date.month != loop.previtem.date.month %}
{{ event.date.strftime("%B %Y") }}
{% endif %}
{% set delta = event.delta_days(today) %}
{% if event.name == "today" %}
{% else %}
{% set cell_bg = " bg-warning-subtle" if delta == "today" else "" %}
{{event.as_date.strftime("%a, %d, %b")}}
{{event.display_time or ""}}
{{event.display_timezone or ""}}
{% if event.end_date %}
{% if event.end_as_date == event.as_date and event.has_time %}
end: {{event.end_date.strftime("%H:%M") }}
(duration: {{event.end_date - event.date}})
{% elif event.end_date != event.date %}
{{event.end_date}}
{% endif %}
{% endif %}
{{ delta }}
{% endif %}
{% endfor %}
Space launches
{% for launch in rockets %}
{{ launch.t0_date }}
{% if launch.t0_time %}
{{ launch.t0_time }}{% endif %}
{{ launch.net_precision }}
launch status:
{{ 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 }})
{% if launch.pad_wikipedia_url %}
{{ launch.pad_name }}
{% else %}
{{ launch.pad_name }} {% if launch.pad_name != "Unknown Pad" %}(no Wikipedia article){% endif %}
{% endif %}
— {{ launch.location }}
{% if launch.mission %}
{% for line in launch.mission.description.splitlines() %}
{{ line }}
{% endfor %}
{% else %}
No description.
{% endif %}
{% endfor %}