{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Subscription Details" %}{% endblock %} {% block content %}
{% trans "Plan" %}: {{ subscription.plan.name }}
{% trans "Status" %}: {{ subscription.get_status_display }}
{% trans "Price" %}: ${{ subscription.plan.price }}/{{ subscription.plan.get_billing_period_display|lower }}
{% trans "Current Period" %}: {{ subscription.current_period_start|date:"M j, Y" }} - {{ subscription.current_period_end|date:"M j, Y" }}
{% if subscription.trial_end %}{% trans "Trial Ends" %}: {{ subscription.trial_end|date:"M j, Y" }}
{% endif %}