church-api/church-website-axum/templates/event_detail.html
Benjamin Slingo 0c06e159bb Initial commit: Church API Rust implementation
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.
2025-08-19 20:56:41 -04:00

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 %}