{% extends 'core/base.html' %} {% block title %}Dashboard – SplitChat{% endblock %} {% block content %} {% with rooms=rooms %}
Net Balance
{% if net_balance >= 0 %}+{% endif %}${{ net_balance|floatformat:2 }}
{% if net_balance >= 0 %}You're in the green{% else %}You have outstanding debts{% endif %}
Owed to You
+${{ total_owed|floatformat:2 }}
Others owe you this
You Owe
${{ total_owing|floatformat:2 }}
Across all unsettled events

Your Rooms

+ New
{% if rooms %} {% for room in rooms %}
#
{{ room.name }}
{% if room.description %}
{{ room.description }}
{% endif %}
{{ room.member_count }} member{{ room.member_count|pluralize }}
{% endfor %} {% else %}
💬
No rooms yet.
Create your first room
{% endif %}

Upcoming Events

{% if upcoming_events %} {% for event in upcoming_events %}
{{ event.title }}
{{ event.room.name }}
{% if event.location %}📍 {{ event.location }}{% endif %} {% if event.event_date %}🗓 {{ event.event_date|date:"M j, g:i A" }}{% endif %} 💰 ${{ event.total_amount|floatformat:2 }}
{% endfor %} {% else %}
📅
No upcoming events.
{% endif %}
{% endwith %} {% endblock %}