<%- include('../partials/layout-start') %>

Личный кабинет

<% if (success) { %>

<%= success %>

<% } %> <% if (error) { %>

<%= error %>

<% } %> <% if (activeTab === 'profile') { %>
<% } %> <% if (activeTab === 'email') { %>

Смена email

Текущий email: <%= user.email %>

<% } %> <% if (activeTab === 'reservations') { %>

Мои бронирования

<% if (!reservations.length) { %>

Активных броней нет.

<% } else { %> <% const resStatus = { active: 'Активна', fulfilled: 'Выполнена', cancelled: 'Отменена', expired: 'Истекла' }; %> <% reservations.forEach(r => { %> <% }) %>
Товар Кол-во Статус До
<%= r.product_name %> <%= r.quantity %> <%= resStatus[r.status] || r.status %> <%= r.status === 'active' ? new Date(r.expires_at).toLocaleString('ru-RU') : '—' %> <% if (r.status === 'active') { %>
<% } %>
<% } %>
<% } %> <% if (activeTab === 'password') { %>

Смена пароля

<% } %>
<%- include('../partials/layout-end') %>