
Complete church management system with bulletin management, media processing, live streaming integration, and web interface. Includes authentication, email notifications, database migrations, and comprehensive test suite.
28 lines
895 B
HTML
28 lines
895 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
{% if event %}
|
|
<section class="section-2025">
|
|
<div class="container-2025">
|
|
<div class="card-2025 scroll-reveal">
|
|
<h1 class="section-title">{{ event.title }}</h1>
|
|
<p><i class="fas fa-clock"></i> {{ event.start_time }} - {{ event.end_time }}</p>
|
|
<p><i class="fas fa-map-marker-alt"></i> {{ event.location }}</p>
|
|
{% if event.description %}
|
|
<div style="margin-top: 2rem;">{{ event.description }}</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% else %}
|
|
<section class="section-2025">
|
|
<div class="container-2025">
|
|
<div class="card-2025 scroll-reveal" style="text-align: center;">
|
|
<h1>Event Not Found</h1>
|
|
<p>The event you're looking for doesn't exist.</p>
|
|
<a href="/events" class="btn-2025 btn-primary">View All Events</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %} |