{% extends "base.html" %} {% block title %}Tariffs — VPN Control Panel{% endblock %} {% block content %}
| ID | Name | Duration | Price | Max Devices | Traffic | Status | Created |
|---|---|---|---|---|---|---|---|
| {{ t.id }} | {{ t.name }} | {{ t.duration_days }} days | {{ "%.2f"|format(t.price) }} {{ t.currency }} | {{ t.max_devices }} | {% if t.traffic_gb %}{{ t.traffic_gb }} GB{% else %}Unlimited{% endif %} | {% if t.is_active %} Active {% else %} Inactive {% endif %} | {{ t.created_at.strftime("%Y-%m-%d") }} |