{% extends "main/base_template.html" %} {% block content %}

Home Page


Hello {{ user.first_name }}
See how your apartment looks to other users..
what do you think?

Want to update? visit here


Have a look at your pending connections
{% for connection in pending_connections %} {% endfor %}
# Name Date About Action
{{ forloop.counter }} {{connection.seeker.base_user.first_name}} {{connection.date_created}} {{connection.seeker.about}}
{{apartment.address}}
{{apartment.address}}, {{apartment.city}}
Uploaded by {{apartment.owner.first_name}} {{apartment.owner.last_name}}
{% if apartment.owner.not_smoking %} No smoking {% endif %} {% if apartment.owner.pets_allowed %} Pet friendly {% endif %} {% if apartment.owner.air_conditioner %} A/C {% endif %} {% if apartment.owner.balcony %} Balcony {% endif %} {% if apartment.owner.elevator %} Elevator {% endif %} {% if apartment.owner.long_term %} Long Term {% endif %} {% if apartment.owner.immediate_entry %} Imediate Entry {% endif %}

{{apartment.num_of_roomates}} Roommates     {{apartment.num_of_rooms}} Rooms

Rent: {{apartment.rent}}         Entry: {{apartment.start_date}}

More Information

About

{{apartment.about}}

{{apartment.address}}
{{apartment.owner.first_name}} {{apartment.owner.last_name}}
{{apartment.address}}, {{apartment.city}}
{% for hobby in apartment.owner.hobbies.all %} {{hobby}} {% endfor %}


{% endblock %}