Skip to content
Snippets Groups Projects
Verified Commit 49f236b1 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Merge branch 'master' into 240-frontend-for-group-types

parents 5d1a1655 b472b4ec
No related branches found
No related tags found
1 merge request!270Resolve "Frontend for group types"
Pipeline #2157 passed
......@@ -218,9 +218,6 @@ class ExtensibleModel(models.Model, metaclass=_ExtensibleModelBase):
"""Collect all fields that can be synced on a model."""
return lazy(cls.syncable_fields_choices, tuple)
def __str__(self) -> str:
return f"{self.__class__.meta.name} {self.pk}"
class Meta:
abstract = True
......
......@@ -28,7 +28,7 @@ class GroupTypesTable(tables.Table):
"""Table to list group types."""
class Meta:
attrs = {"class": "table table-striped table-bordered table-hover table-responsive-xl"}
attrs = {"class": "responsie-table centered highlight striped"}
name = tables.LinkColumn("edit_group_type_by_id", args=[A("id")])
description = tables.LinkColumn("edit_group_type_by_id", args=[A("id")])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment