{% 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 Delete

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