{% extends "layouts/base.html" %} {% load static %} {% block title %} Account Billing {% endblock title %} {% block stylesheet %} {% endblock stylesheet %} {% block body_attributes %} {% endblock body_attributes %} {% block content %}
{% include "profiles/profile_info.html" %} {% include "profiles/profile_menu.html" %}

Active until {{user.subscription.ends_time}}

We will send you a notification upon Subscription expiration

${{ user.subscription.plan.price }} Per {{ user.subscription.plan.plan_duration|truncatechars:2 }}
Extended Pro Package. Up to 100 Agents & 25 Projects
{% comment %}
Plan Time 86 of 100 Used
14 Users remaining until your plan requires update
Cancel Subscription
{% endcomment %}

Payment Information

{% if user.subscription %}
{{ user.subscription.plan.paymentSource }}
Primary
Expired: {{ user.subscription.ends_time|date:"d b Y" }}
Name {{ user.get_full_name }}
Expires {{ user.subscription.ends_time|date:"d b Y" }}
ID {{ user.subscription.payment.transactionID }}
Phone {{ user.profile.phone }}
Email {{ user.email }}
Logged From {{ user.profile.country.name }}
{% else %}

You have no payment method yet!

{% endif %}

Summary

My Account
{{ user.get_full_name }} {% if user.is_verified %} Active {% else %} Not Active {% endif %}
{{ request.user.email }}
Payment Method
{% if user.subscription %} {{user.subscription.plan.plan_name}} $ {{user.subscription.plan.price}} / Month {% else %} You have no Plans yet {% endif %}
Payment Details
{% if user.subscription.ends_time %}
{% if plan %} {{plan.paymentSource}} {% else %} {% endif %}

Expired Date: {{user.subscription.ends_time|date:"d b Y"}}
{% else %}
{% if plan.paymentSource %} {{plan.paymentSource}} {% else %} No Payment Source Detected {% endif %}
{% endif %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}