{% extends "area_base.html" %} {% block title %}{{ page.title if page else 'Worship Support' }} | TheOrganist24{% endblock %} {% block area_content %}

{{ page.title if page else 'Worship Support' }}

{% if page and page.body %}

{{ page.body | nl2br }}

{% endif %} {% macro render_service(service, highlight=false) %}
{{ service.church }} {{ service.service_type }} {{ service.day.strftime("%-d %B %Y") }} {% if service.time %} {{ service.time.strftime("%-I:%M %p") }} {% endif %}
{% if service.music %}

Organ

{% for m in service.music %}
{{ m.placement }}
{{ m.title }} — {{ m.composer }}
{% endfor %}
{% endif %} {% if service.hymns %}

Hymns

{% for h in service.hymns %}
{{ h.placement }}
{{ h.number }} {{ h.first_line }} ({{ h.tune }}) {% if h.verses %} vv. {{ h.verses | join(", ") }} {% endif %}
{% endfor %}
{% endif %} {% if not service.music and not service.hymns %}

No music details recorded yet.

{% endif %}
{% endmacro %} {% if this_sunday %}

This Sunday

{{ render_service(this_sunday, highlight=true) }}
{% endif %} {% if upcoming %}

Upcoming

{% for service in upcoming %} {{ render_service(service) }} {% endfor %}
{% endif %} {% if recent %}

Recent

{% for service in recent %} {{ render_service(service) }} {% endfor %}
{% endif %} {% endblock %}