Abbort Buttons and Paging of Tables turend of.

This commit is contained in:
gw3000 2023-07-29 11:06:00 +02:00
parent 04c5ace7ab
commit 14fc5b97c5
17 changed files with 23 additions and 23 deletions

View file

@ -20,8 +20,8 @@
language: {
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
},
paging: true,
info: true,
paging: false,
info: false,
responsive: true,
columnDefs: [
{ responsivePriority: 1, targets: 0 },
@ -109,7 +109,7 @@
</select>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Abbruch</button>
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Abbrechen</button>
<button class="btn btn-primary" type="submit">Übernehmen und weiter</button>
</div>
</div>

View file

@ -10,7 +10,7 @@
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form|crispy }}
<a href="{% url 'bird_all' %}" class="btn btn-danger">Abbruch</a>
<a href="{% url 'bird_all' %}" class="btn btn-success">Abbrechen</a>
<button class="btn btn-primary" type="submit">Patient anlegen</button>
<div class="mt-3"><small>* Pflichtfeld</small></div>
</form>

View file

@ -11,7 +11,7 @@
Reg-Num.: <strong>{{bird.id}}</strong> löschen?</p>
</div>
</p>
<a href="{% url 'bird_all'%}" class="btn btn-secondary">Abbruch</a>
<a href="{% url 'bird_all' %}" class="btn btn-success">Abbrechen</a>
<button class="btn btn-danger" type="submit">Löschen</button>
</form>
</div>

View file

@ -20,8 +20,8 @@
language: {
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
},
paging: true,
info: true,
paging: false,
info: false,
responsive: true,
columnDefs: [
{ responsivePriority: 1, targets: 0 },

View file

@ -12,7 +12,7 @@
<fieldset>
{% csrf_token %}
{{form|crispy}}
<button class="btn btn-success" type="abbort">Abbrechen</button>
<a href="{% url 'bird_all' %}" class="btn btn-success">Abbrechen</a>
<a href="{% url 'bird_delete' bird.id %}" class="btn btn-danger">Löschen</a>
<a href="{% url 'costs_create' bird.id %}" class="btn btn-warning">Buchung +</a>
<button class="btn btn-primary" type="submit">Speichern</button>