{% extends 'layouts/base.html' %} {% block title %}Packages{% endblock %} {% block content %}
{% if error %} {% endif %}
{% for package in packages %}

{{ package.title }}

{% if package.is_active %}
Subscribed
{% endif %}

{{ package.description or 'No description provided.' }}

Contacts {{ package.no_of_contacts }}
Call Minutes {{ package.no_of_mins }}
Validity 30 days
File Limit {% if package.file_limit %} {{ package.file_limit }} files {% else %} Unlimited {% endif %}
Price {{ package.price_display }}
{% if package.is_active %}
Subscription active{% if package.remaining_days is not none %}, {{ package.remaining_days }} day{{ 's' if package.remaining_days != 1 else '' }} remaining{% endif %}.
{% endif %}
{% else %}

No packages found.

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}