{% extends 'base.html' %} {% load i18n %} {% load static %} {% block content %}

{% trans "Subscription Expired" %}

{% blocktrans with name=request.user.username %} Hello {{ name }}, your subscription to MASAR CARGO has expired. {% endblocktrans %}

  • {% trans "Expired on:" %} {{ profile.subscription_expiry|date:"d/m/Y" }}
  • {% trans "Current Plan:" %} {{ profile.get_subscription_plan_display }}

{% trans "Renew Your Subscription" %}

{% csrf_token %}
{{ form.subscription_plan }}
{% trans "Fee to Pay:" %}
0.00 {% trans "SAR" %}
{% if app_settings.thawani_enabled %} {% else %}
{% trans "Online payment is currently disabled. Please contact support for renewal." %}
{% endif %}
{% if app_settings.contact_phone or app_settings.contact_email %}
{% trans "Need Help?" %}
{% if app_settings.contact_phone %}

{{ app_settings.contact_phone }}

{% endif %} {% if app_settings.contact_email %}

{{ app_settings.contact_email }}

{% endif %}
{% endif %}
{% endblock %}