fixed styles
This commit is contained in:
parent
495812a2a6
commit
8ce11f337a
|
@ -10,7 +10,7 @@
|
|||
<li class="list-group-item">Действие: {{ task.type }}</li>
|
||||
|
||||
<li class="list-group-item">
|
||||
<label class="form-label">Сессии:</label>
|
||||
<label class="form-label">Сессия:</label>
|
||||
<select
|
||||
name="session"
|
||||
hx-put="/api/tasks/{{task.id}}/change"
|
||||
|
@ -31,24 +31,26 @@
|
|||
</ul>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<div class="btn-group mx-2" role="group">
|
||||
<button
|
||||
hx-delete="/api/tasks/{{task.id}}"
|
||||
hx-swap="delete"
|
||||
hx-target='[data-task="{{ task.id }}"]'
|
||||
hx-confirm="Вы уверены, что хотите удалить эту задачу?"
|
||||
class="btn btn-outline-danger mt-2 mx-2"
|
||||
class="btn btn-outline-danger"
|
||||
>
|
||||
Удалить
|
||||
</button>
|
||||
<button hx-put="/api/tasks/{{task.id}}/stop" hx-swap="none" class="btn btn-outline-secondary mt-2 mx-2">
|
||||
<button hx-put="/api/tasks/{{task.id}}/stop" hx-swap="none" class="btn btn-outline-secondary">
|
||||
Стоп
|
||||
</button>
|
||||
<button hx-put="/api/tasks/{{task.id}}/start" hx-swap="none" class="btn btn-outline-success mt-2 mx-2">
|
||||
<button hx-put="/api/tasks/{{task.id}}/start" hx-swap="none" class="btn btn-outline-success">
|
||||
Запустить
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% else %}
|
||||
<small id="helpId" class="form-text">Здесь ничего нет.</small>
|
||||
{% endfor %}
|
Loading…
Reference in New Issue