{% extends 'master.html' %} {% load static %} {% block content %}

My Profile


{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Profile Picture

Username: {{ user.username }}

Full Name: {{ user.get_full_name|default:user.full_name }}

Email: {{ user.email }}

Phone: {{ user.phone|default:'Not provided' }}

My Ad Orders History


{% if user_orders %}
{% for order in user_orders %}
Template Image
{{ order.ad.name }}

Ordered On: {{ order.created_at|date:'M d, Y' }}

Total Price: Rs.{{ order.total_price }}

{{ order.get_status_display }} {% if order.status|lower == 'completed' %} Invoice {% endif %} {% comment %} {% if order.status|lower == 'completed' %} Invoice {% endif %} {% endcomment %}
{% endfor %}
{% else %} No Orders

You have not placed any ad orders yet.

{% endif %}
{% endblock %}