{% extends 'base.html' %} {% block title %}Profile{% endblock %} {% block content %}

Profile

{% if user.userprofile.avatar %}
...
{% else %}
{{ user.first_name|slice:":1" }}{{ user.last_name|slice:":1" }}
{% endif %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

Profile Update

{% csrf_token %}
Your Applications
    {% for application in applications %}
  • Type: {{ application.get_application_type_display }}
    Amount: {{ application.amount }} {{ application.currency }}
    Token: {{ application.tran_id }}
    Applied Date: {{ application.tran_date|date:"Y-m-d" }}
    {% if application.is_approved %} Approved {% else %} Pending {% endif %}
  • {% empty %}
  • No applications found.
  • {% endfor %}
Subscription Details
{% if subscription %}

Start Date: {{ subscription.start_date|date:"Y-m-d" }}

End Date: {{ subscription.end_date|date:"Y-m-d" }}

{% else %}

No active subscription.

{% endif %}
{% endblock %}