Files
watersurf-erp/app/templates/references/reference_list.html

37 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ title }} — ERP WaterSurf{% endblock %}
{% block content %}
<div class="ws-card">
<div class="ws-card-header">
<h2 class="ws-page-title mb-0">{{ title }}</h2>
<a href="{% url create_url_name %}" class="btn btn-ws-primary">Добавить</a>
</div>
<div class="ws-table-wrap">
<table class="ws-table">
<thead>
<tr>
<th>#</th>
{% block table_headers %}<th>Название</th>{% endblock %}
<th></th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td>{{ item.pk }}</td>
{% block table_cells %}<td>{{ item }}</td>{% endblock %}
<td class="ws-actions">
<a href="{% block edit_url %}{% url update_url_name item.pk %}{% endblock %}" class="ws-link">Изменить</a>
<span class="ws-text-muted"> · </span>
<a href="{% block delete_url %}{% url delete_url_name item.pk %}{% endblock %}" class="ws-link ws-link-danger">Удалить</a>
</td>
</tr>
{% empty %}
<tr><td colspan="3" class="ws-empty">Нет записей.</td></tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}