{% extends 'base.html' %} {% load static %} {% block title %}My Saved Properties | {{ site.site_name }}{% endblock %} {% block content %}

Saved Properties

You have {{ properties.count }} saved propert{{ properties.count|pluralize:'y,ies' }}

{% if properties %}
{% for prop in properties %} {% endfor %}
{% else %}

No Saved Properties

You haven't saved any properties yet. Browse our listings and click the heart icon to save them here.

Browse Properties
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}