Skip to content
Snippets Groups Projects

Release 2.4

Merged Nik | Klampfradler requested to merge release-2.3.2 into master
2 files
+ 11
6
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 6
6
@@ -13,7 +13,7 @@ class SchoolTermTable(tables.Table):
"""Table to list persons."""
class Meta:
attrs = {"class": "responsive-table highlight"}
attrs = {"class": "highlight"}
name = tables.LinkColumn("edit_school_term", args=[A("id")])
date_start = tables.Column()
@@ -31,7 +31,7 @@ class PersonsTable(tables.Table):
"""Table to list persons."""
class Meta:
attrs = {"class": "responsive-table highlight"}
attrs = {"class": "highlight"}
first_name = tables.LinkColumn("person_by_id", args=[A("id")])
last_name = tables.LinkColumn("person_by_id", args=[A("id")])
@@ -41,7 +41,7 @@ class GroupsTable(tables.Table):
"""Table to list groups."""
class Meta:
attrs = {"class": "responsive-table highlight"}
attrs = {"class": "highlight"}
name = tables.LinkColumn("group_by_id", args=[A("id")])
short_name = tables.LinkColumn("group_by_id", args=[A("id")])
@@ -52,7 +52,7 @@ class AdditionalFieldsTable(tables.Table):
"""Table to list group types."""
class Meta:
attrs = {"class": "responsive-table hightlight"}
attrs = {"class": "hightlight"}
title = tables.LinkColumn("edit_additional_field_by_id", args=[A("id")])
delete = tables.LinkColumn(
@@ -68,7 +68,7 @@ class GroupTypesTable(tables.Table):
"""Table to list group types."""
class Meta:
attrs = {"class": "responsive-table highlight"}
attrs = {"class": "highlight"}
name = tables.LinkColumn("edit_group_type_by_id", args=[A("id")])
description = tables.LinkColumn("edit_group_type_by_id", args=[A("id")])
@@ -81,7 +81,7 @@ class DashboardWidgetTable(tables.Table):
"""Table to list dashboard widgets."""
class Meta:
attrs = {"class": "responsive-table highlight"}
attrs = {"class": "highlight"}
widget_name = tables.Column(accessor="pk")
title = tables.LinkColumn("edit_dashboard_widget", args=[A("id")])
Loading