{% extends 'base.html' %} {% block title %} | Dashboard{% endblock %} {% load static %} {% block content %}
{% include 'includes/messages.html' %}

Welcome {{user.first_name}}

Here are the cars that you have inquired about

{% if inquiries %} {% for inquiry in inquiries %} {% endfor %}
# Car Name Location Action
1 {{inquiry.car_title}} {{inquiry.city}} View Car
{% else %}

You have no inquiries

{% endif %}
{% endblock %}