Add Abbreviation column to source and citation selectors

Implements #11710
This commit is contained in:
Dave Scheipers 2020-05-15 14:38:55 -04:00 committed by Nick Hall
parent 5b31272c7c
commit a6773e3612
2 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@ class SelectCitation(BaseSelector):
def get_column_titles(self):
return [
(_('Source: Title or Citation: Volume/Page'), 350, BaseSelector.TEXT, 0),
(_('Abbreviation'), 100, BaseSelector.TEXT, 8),
(_('ID'), 75, BaseSelector.TEXT, 1),
(_('Last Change'), 150, BaseSelector.TEXT, 6),
]

View File

@ -64,6 +64,7 @@ class SelectSource(BaseSelector):
def get_column_titles(self):
return [
(_('Title'), 350, BaseSelector.TEXT, 0),
(_('Abbreviation'), 100, BaseSelector.TEXT, 3),
(_('Author'), 200, BaseSelector.TEXT, 2),
(_('ID'), 75, BaseSelector.TEXT, 1),
(_('Last Change'), 150, BaseSelector.TEXT, 7),