{% extends 'base.html' %} {% block title %}Dashboard{% endblock %} {% block content %}

Host Dashboard

Your Listings

{% for listing in listings %} {% endfor %}
ID Title Location Property Type Actions
{{ listing.id }} {{ listing.title }} {{ listing.location }} {{ listing.property_type }} Edit

Bookings

{% for booking in bookings %} {% endfor %}
Booked By (User ID) Listing Location Property Type Check-in Check-out
{{ booking.user_id }} {{ booking.listing.title if booking.listing else 'Unknown' }} {{ booking.listing.location if booking.listing else 'Unknown' }} {{ booking.listing.property_type if booking.listing else 'Unknown' }} {{ booking.check_in.strftime('%Y-%m-%d') }} {{ booking.check_out.strftime('%Y-%m-%d') }}

Registered Users

{% for user in users %} {% endfor %}
ID Email Phone Document Actions
{{ user.id }} {{ user.email }} {{ user.phone }} {% if user.id in documents %} View Document {% else %} Not Verified {% endif %} {% if user.id in documents and not documents[user.id].verified %}
{% endif %}
{% endblock %}