X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/ae2a8df21e1038038cf898eb5a9d09b9ecc33f8f..2d538a50605add2666172861744229599487f1b2:/src/wlxml/views.py diff --git a/src/wlxml/views.py b/src/wlxml/views.py index 3784b777..3375b0d9 100644 --- a/src/wlxml/views.py +++ b/src/wlxml/views.py @@ -8,7 +8,7 @@ from librarian.document import WLDocument from librarian.builders import StandaloneHtmlBuilder from librarian.meta.types.wluri import WLURI from librarian.meta.types.text import LegimiCategory, Epoch, Kind, Genre, Audience, ThemaCategory, MainThemaCategory -from depot.legimi import legimi +from depot.publishers.legimi import Legimi class XslView(TemplateView): @@ -48,7 +48,7 @@ class TagView(DetailView): VALUE_TYPES = { LegimiCategory: { 'widget': 'select', - 'options': [''] + list(legimi.CATEGORIES.keys()), + 'options': [''] + list(Legimi.CATEGORIES.keys()), }, Audience: { 'autocomplete': { @@ -58,12 +58,18 @@ VALUE_TYPES = { ThemaCategory: { 'autocomplete': { 'source': '/catalogue/terms/thema/', - } + }, + 'chooser': { + 'source': '/catalogue/chooser/thema/', + }, }, MainThemaCategory: { 'autocomplete': { 'source': '/catalogue/terms/thema-main/', - } + }, + 'chooser': { + 'source': '/catalogue/chooser/thema-main/', + }, }, Epoch: { 'autocomplete': {