Add sortable columns to all apps

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-04-24 04:20:50 -04:00
parent 2619777d41
commit 296c580a5e
28 changed files with 248 additions and 167 deletions

View File

@@ -67,17 +67,12 @@ class SourcesApp(MayanAppConfig):
)
SourceColumn(
attribute='label', is_identifier=True,
attribute='label', is_identifier=True, is_sortable=True,
source=Source
)
SourceColumn(
attribute='class_fullname', label=_('Type'), source=Source
)
SourceColumn(
attribute='enabled', source=Source,
widget=TwoStateWidget
)
SourceColumn(
attribute='enabled', is_sortable=True, source=Source,
widget=TwoStateWidget