{% extends 'base.html' %} {% block title %}EventNest - Discover & Host Events{% endblock %} {% block content %}
The Events Platform

Discover & Host
Unforgettable Events

From tech conferences to music festivals - find your next experience or bring your vision to life.

Explore Events {% if user.is_authenticated %} My Dashboard {% else %} Get Started Free {% endif %}
{% if nav_categories %}
All {% for cat in nav_categories %} {{ cat.title }} {% endfor %}
{% endif %} {% if featured_events %}

Featured Events

View All
{% for event in featured_events %}
{% if event.category %}{{ event.category.title|first }}{% else %}🎉{% endif %} {% if event.is_featured %}Featured{% endif %}
{% if event.category %}{{ event.category.title }}{% endif %} {{ event.event_type|title }}
{{ event.title }}
📅 {{ event.start_date|date:"M d, Y" }} {% if event.city %}📍 {{ event.city }}{% endif %}
{% endfor %}
{% endif %} {% if upcoming_events %}

Upcoming Events

View All
{% for event in upcoming_events %}
{{ event.title }}
{{ event.start_date|date:"M d" }} {% if event.city %}{{ event.city }}{% endif %}
{% endfor %}
{% endif %} {% if not featured_events and not upcoming_events %}
🎉

No events yet

Run python manage.py seed to add sample data

{% endif %} {% endblock %}