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

User Dashboard

Manage your Real Estate account

{% include 'partials/_alerts.html' %}

Welcome {{ user.first_name }}

{% if contacts %}

Here are the property listings that you have inquired about

{% for contact in contacts %} {% endfor %}
# Property
{{ contact.id }} {{ contact.listing }} View Listing
{% else %}

You have not made any inquiries

{% endif %}
{% endblock %}