← personal tools
Agenda
- Today is {{now.strftime("%A, %-d %b %Y")}}
- GBPUSD: {{"{:,.3f}".format(gbpusd)}}
- 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 %}
{% endif %}
{{event.as_date.strftime("%a, %d, %b")}}
{{event.display_time or ""}}
{{event.display_timezone or ""}}
{{ event.delta_days(today) }}
{% endfor %}
Space launches
{% for launch in rockets %}
{{ launch.t0_date }}
{% if launch.t0_time %}
{{ launch.t0_time }}{% endif %}
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 }})
{{ launch.pad_name }}
— {{ launch.location }}
{% for line in launch.mission.description.splitlines() %}
{{ line }}
{% endfor %}
{% endfor %}