Fixed margin of delete button on admin forms

This commit is contained in:
Jan Böhmer 2026-03-07 15:57:38 +01:00
parent 3aa7480fe4
commit 815b2b6c7d

View file

@ -5,7 +5,7 @@
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ entity.id) }}"> <input type="hidden" name="_token" value="{{ csrf_token('delete' ~ entity.id) }}">
<div class="form-group"> <div class="form-group">
<div class=""></div> <div class=""></div>
<div class="col-sm {{ offset_col }} ps-2"> <div class="{{ input_col }} {{ offset_col }} ps-1">
{% set delete_disabled = (not is_granted("delete", entity)) or (entity.group is defined and entity.id == 1) or entity == app.user %} {% set delete_disabled = (not is_granted("delete", entity)) or (entity.group is defined and entity.id == 1) or entity == app.user %}
<div class="btn-group"> <div class="btn-group">
<button class="btn btn-danger" {% if delete_disabled %}disabled{% endif %}>{% trans %}entity.delete{% endtrans %}</button> <button class="btn btn-danger" {% if delete_disabled %}disabled{% endif %}>{% trans %}entity.delete{% endtrans %}</button>
@ -20,7 +20,7 @@
</div> </div>
</div> </div>
{% if entity.parent is defined %} {% if entity.parent is defined %}
<div class="ms-2 custom-control custom-checkbox custom-control-inline"> <div class="ms-1 custom-control custom-checkbox custom-control-inline">
<input type="checkbox" class="form-check-input" id="recursive" name="delete_recursive"> <input type="checkbox" class="form-check-input" id="recursive" name="delete_recursive">
<label class="form-check-label" for="recursive">{% trans %}entity.delete.recursive{% endtrans %}</label> <label class="form-check-label" for="recursive">{% trans %}entity.delete.recursive{% endtrans %}</label>
</div> </div>