X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/360d9d37f72b1c6e2edb83c3a0218e55578134f3..dd79289baf8168c654faaaa5c8e5840e3a63f94e:/src/wlxml/views.py diff --git a/src/wlxml/views.py b/src/wlxml/views.py index 281ced5d..ebc837dc 100644 --- a/src/wlxml/views.py +++ b/src/wlxml/views.py @@ -7,7 +7,7 @@ from librarian.dcparser import BookInfo 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 +from librarian.meta.types.text import LegimiCategory, Epoch, Kind, Genre, Audience, ThemaCategory from depot.legimi import legimi @@ -48,7 +48,12 @@ class TagView(DetailView): VALUE_TYPES = { LegimiCategory: { 'widget': 'select', - 'options': list(legimi.CATEGORIES.keys()), + 'options': [''] + list(legimi.CATEGORIES.keys()), + }, + ThemaCategory: { + 'autocomplete': { + 'source': '/catalogue/terms/thema/', + } }, Epoch: { 'autocomplete': { @@ -104,6 +109,7 @@ VALUE_TYPES = { "language": { 'widget': 'select', 'options': [ + '', 'pol', 'eng', 'fre',