Merge branch 'main' of gitea.pangea.org:trustchain-oc1-orchestral/IdHub

This commit is contained in:
Cayo Puigdefabregas 2024-02-01 13:32:35 +01:00
commit f060434660
2 changed files with 21 additions and 3 deletions

View File

@ -6,6 +6,10 @@ on:
- main - main
- release - release
- testing-pipeline - testing-pipeline
pull_request:
branches:
- main
- release
jobs: jobs:
test: test:

View File

@ -235,11 +235,25 @@ class TemplateTable(tables.Table):
orderable=False, orderable=False,
verbose_name="Delete schema") verbose_name="Delete schema")
_name = tables.Column(verbose_name="Name") name = tables.Column()
_description = tables.Column(verbose_name="Description") description = tables.Column()
def order_name(self, queryset, is_descending):
queryset = Schemas.objects.order_by(
("-" if is_descending else "") + "_name"
)
return (queryset, True)
def order_description(self, queryset, is_descending):
queryset = Schemas.objects.order_by(
("-" if is_descending else "") + "_description"
)
return (queryset, True)
class Meta: class Meta:
model = Schemas model = Schemas
template_name = "idhub/custom_table.html" template_name = "idhub/custom_table.html"
fields = ("created_at", "file_schema", "name", "_description", fields = ("created_at", "file_schema", "name", "description",
"view_schema", "delete_schema") "view_schema", "delete_schema")