Names now in alphabetical order
All checks were successful
Build image when workload image tag changes / build-if-image-changed (push) Successful in 35s

This commit is contained in:
2025-11-07 00:36:22 +01:00
parent d2d260381e
commit 683d53dac0
4 changed files with 4 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ spec:
mountPath: /data
containers:
- name: web
image: git.baumann.gr/adebaumann/vui:0.947
image: git.baumann.gr/adebaumann/vui:0.948
imagePullPolicy: Always
ports:
- containerPort: 8000

View File

@@ -191,6 +191,7 @@ class PersonAdmin(admin.ModelAdmin):
js = ['admin/js/jquery.init.js', 'custom/js/inline_toggle.js']
css = {'all': ['custom/css/admin_extras.css']}
list_display=['name']
ordering = ['name']

View File

@@ -26,6 +26,7 @@ class Person(models.Model):
return self.name
class Meta:
verbose_name_plural="Personen"
ordering = ['name']
class Thema(models.Model):
name = models.CharField(max_length=100, primary_key=True)

View File

@@ -31,6 +31,6 @@
<div class="flex-fill">{% block content %}Main Content{% endblock %}</div>
<div class="col-md-2">{% block sidebar_right %}{% endblock %}</div>
</div>
<div>VorgabenUI v0.947</div>
<div>VorgabenUI v0.948</div>
</body>
</html>