{% extends "base.html" %} {% block title %}Личный кабинет — FitnessCenter{% endblock %} {% block content %}
{{ request.user.first_name|default:request.user.username|slice:":1" }}
{{ request.user.get_full_name|default:request.user.username }}
{{ request.user.email }}
{% if active_subscription %}
Активен до {{ active_subscription.end_date|date:"d.m.Y" }}
{% else %}
Нет активного абонемента
{% endif %} Выйти

Оформить абонемент

{% for plan in plans %}
{{ plan.name }}
{{ plan.duration_days }} дней
{{ plan.price }} ₽

{{ plan.description }}

{% csrf_token %}
{% endfor %}

История

{% for sub in history %} {% empty %} {% endfor %}
План Период Статус
{{ sub.plan.name }} {{ sub.start_date|date:"d.m.Y" }} — {{ sub.end_date|date:"d.m.Y" }} {% if sub.is_active %} Активен {% else %} Истёк {% endif %}
Покупок пока нет
{% endblock %}