Agenda
    
      ← personal tools
      |
      travel
      |
      conference
    
    
    - 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 ""}}
      
      
      
      {{ 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 %}