46 lines
2.2 KiB
HTML
46 lines
2.2 KiB
HTML
{% extends "admin/base.html" %}
|
|
{% import "macros/ui.html" as ui %}
|
|
|
|
{% block title %}{{ t(key="admin-customers", lang=lang | default(value='sk')) }}{% endblock title %}
|
|
{% block crumb %}{{ t(key="admin-customers", lang=lang | default(value='sk')) }}{% endblock crumb %}
|
|
|
|
{% block content %}
|
|
<div class="flex flex-wrap items-end justify-between gap-3">
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-on-surface-strong dark:text-on-surface-dark-strong">{{ t(key="admin-customers", lang=lang | default(value='sk')) }}</h1>
|
|
<p class="text-sm text-on-surface/70 dark:text-on-surface-dark/70">{{ t(key="admin-customers-desc", lang=lang | default(value='sk')) }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-6 {{ ui::table_wrap_cls() }}">
|
|
{% if customers | length > 0 %}
|
|
<table class="{{ ui::table_cls() }}">
|
|
<thead class="{{ ui::thead_cls() }}">
|
|
<tr>
|
|
{{ ui::th(label=t(key="name", lang=lang | default(value='sk'))) }}
|
|
{{ ui::th(label=t(key="email", lang=lang | default(value='sk'))) }}
|
|
{{ ui::th(label=t(key="negotiated-prices", lang=lang | default(value='sk'))) }}
|
|
{{ ui::th(label=t(key="actions", lang=lang | default(value='sk')), align="text-right") }}
|
|
</tr>
|
|
</thead>
|
|
<tbody class="{{ ui::tbody_cls() }}">
|
|
{% for customer in customers %}
|
|
<tr class="{{ ui::row_cls() }}">
|
|
<td class="px-4 py-3 font-medium text-on-surface-strong dark:text-on-surface-dark-strong">{{ customer.name }}</td>
|
|
<td class="px-4 py-3 text-on-surface/70 dark:text-on-surface-dark/70">{{ customer.email }}</td>
|
|
<td class="px-4 py-3 tabular-nums">{{ customer.negotiated_count }}</td>
|
|
<td class="px-4 py-3 text-right">
|
|
{{ ui::button(variant="outline-secondary", label=t(key="manage-prices", lang=lang | default(value='sk')), href="/admin/customers/" ~ customer.id, size="px-3 py-1.5 text-xs") }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<div class="flex flex-col items-center gap-3 px-4 py-16 text-center">
|
|
<p class="text-on-surface/70 dark:text-on-surface-dark/70">{{ t(key="admin-no-customers", lang=lang | default(value='sk')) }}</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock content %}
|