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 },

View file

@ -15,7 +15,7 @@
<div class="col-md-12 col-lg-4">{{ form.zip_code|as_crispy_field }}</div>
<div class="col-md-12 col-lg-6">{{ form.phone|as_crispy_field }}</div>
</div>
<a href="{% url 'bird_all' %}" class="btn btn-danger">Abbruch</a>
<a href="{% url 'bird_all' %}" class="btn btn-danger">Abbrechen</a>
<button class="btn btn-primary" type="submit">Speichern</button>
</form>
<div class="mt-3"><small>* Pflichtfeld</small></div>

View file

@ -11,7 +11,7 @@
<p class="mb-0">Wollen Sie den Finder <strong>{{rescuer.first_name}} {{rescuer.last_name}}</strong> löschen?</p>
</div>
</p>
<a href="{% url 'rescuer_all'%}" class="btn btn-secondary">Abbruch</a>
<a href="{% url 'rescuer_all'%}" class="btn btn-secondary">Abbrechen</a>
<button class="btn btn-danger" type="submit">Löschen</button>
</form>
</div>

View file

@ -16,7 +16,7 @@
<div class="col-4">{{ form.zip_code|as_crispy_field }}</div>
<div class="col-6">{{ form.phone|as_crispy_field }}</div>
</div>
<a href="{% url 'rescuer_all' %}" class="btn btn-secondary">Abbruch</a>
<a href="{% url 'rescuer_all' %}" class="btn btn-secondary">Abbrechen</a>
<button class="btn btn-primary" type="submit">Speichern</button>
</fieldset>
</form>

View file

@ -18,7 +18,7 @@
</p>
</div>
</div>
<a href="{% url 'rescuer_all' %}" class="btn btn-success">zurück zur Übersicht</a>
<a href="{% url 'rescuer_all' %}" class="btn btn-success">Abbrechen</a>
<a href="{% url 'rescuer_delete' rescuer.id %}" class="btn btn-danger">Löschen</a>
<a href="{% url 'rescuer_edit' rescuer.id %}" class="btn btn-primary">Bearbeiten</a>
</div>