{% extends "main/base_template.html" %} {% block content %}
Personal information:
{% if request.user == user %} Update {% endif %}
Full Name
{{ user.first_name }} {{ user.last_name }}
Email
{{ user.email }}
Birthday
{{ user.birth_date }}
Hobbies:
{% for hobby in hobbies %}
{{hobby.name}}
{% endfor %}
Preferences:
{% if user.not_smoking %}
No smoking
{% endif %} {% if user.pets_allowed %}
Pet friendly
{% endif %} {% if user.air_conditioner %}
A/C
{% endif %} {% if user.balcony %}
Balcony
{% endif %} {% if user.elevator %}
Elevator
{% endif %} {% if user.long_term %}
Long Term
{% endif %} {% if user.immediate_entry %}
Imediate Entry
{% endif %}
joined in {{ user.date_joined }}
{% endblock %}