45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block actions %}
|
|
{% if show_closed %}
|
|
<a href="?show_closed=false" class="btn btn-green-admin">
|
|
{% trans 'Hide closed lots' %}
|
|
|
|
<i class="ps-2 bi bi-x-octagon-fill"></i>
|
|
</a>
|
|
{% else %}
|
|
<a href="?show_closed=true" class="btn btn-green-admin">
|
|
{% trans 'Show closed lots' %}
|
|
|
|
<i class="ps-2 bi bi-x-octagon"></i>
|
|
</a>
|
|
{% endif %}
|
|
|
|
<a href="{% url 'lot:add' %}" type="button" class="btn btn-green-admin">
|
|
<i class="bi bi-folder-plus"></i>
|
|
{% trans 'New lot' %}
|
|
</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="row">
|
|
<table class= "table table-striped table-sm">
|
|
{% for lot in lots %}
|
|
<tr>
|
|
<td><a href="{% url 'dashboard:lot' lot.id %}">{{ lot.name }}</a></td>
|
|
<td>
|
|
<a href="{% url 'lot:edit' lot.id %}"><i class="bi bi-pen"></i></a>
|
|
</td>
|
|
<td>
|
|
<a href="{% url 'lot:delete' lot.id %}"><i class="bi bi-trash text-danger"></i></a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock %}
|