X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5a649a9e943f331ec61d2e86c3840397777ccfb6..05e91c7df5885633b5ea79275d50a3ac4f221d81:/apps/catalogue/forms.py diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py index 6c704b96..36dbef73 100644 --- a/apps/catalogue/forms.py +++ b/apps/catalogue/forms.py @@ -3,6 +3,10 @@ # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # +from django.utils.encoding import force_text +from django.utils.html import format_html +from django.utils.safestring import mark_safe + from catalogue.models import Category from catalogue.models import Tag from django import forms @@ -22,12 +26,8 @@ class DocumentCreateForm(forms.Form): """ owner_organization = forms.CharField(required=False) title = forms.CharField() - language = forms.CharField() publisher = forms.CharField(required=False) description = forms.CharField(required=False) - rights = forms.CharField(required=False) - audience = forms.CharField() - cover = forms.FileField(required=False) def clean_cover(self): @@ -38,34 +38,68 @@ class DocumentCreateForm(forms.Form): class TagForm(forms.Form): - def __init__(self, category, instance=None, *args, **kwargs): + def __init__(self, category, instance=None, tutorial_no=None, *args, **kwargs): super(TagForm, self).__init__(*args, **kwargs) self.category = category self.instance = instance self.field().queryset = Tag.objects.filter(category=self.category) self.field().label = self.category.label.capitalize() + if tutorial_no and category.tutorial: + self.field().widget.attrs.update({ + 'data-toggle': 'tutorial', + 'data-tutorial': str(tutorial_no), + 'data-placement': 'bottom', + 'data-content': category.tutorial, + }) if self.instance: - self.field().initial = self.initial() + self.field().initial = self.get_initial() - def save(self): - assert self.instance, 'No instance provided' - self.instance.tags.remove(*self.instance.tags.filter(category=self.category)) - self.instance.tags.add(self.cleaned_tags()) + def save(self, instance=None): + instance = instance or self.instance + assert instance, 'No instance provided' + self.category.set_tags_for(instance, self.cleaned_tags()) def field(self): raise NotImplementedError - def initial(self): + def get_initial(self): raise NotImplementedError def cleaned_tags(self): raise NotImplementedError + def metadata_rows(self): + return '\n'.join( + '%(value)s' % {'name': tag.category.dc_tag, 'value': tag.dc_value} + for tag in self.cleaned_tags()) + + +class TagSelect(forms.Select): + def render_option(self, selected_choices, option_value, option_label): + if option_value is None: + option_value = '' + help_html = '' + if option_value: + tag = Tag.objects.get(id=int(option_value)) + if tag.help_text: + help_html = mark_safe(' data-help="%s"' % tag.help_text) + option_value = force_text(option_value) + if option_value in selected_choices: + selected_html = mark_safe(' selected="selected"') + if not self.allow_multiple_selected: + # Only allow for a single selection. + selected_choices.remove(option_value) + else: + selected_html = '' + return format_html( + u'', + option_value, selected_html, help_html, force_text(option_label)) + class TagSingleForm(TagForm): tag = forms.ModelChoiceField( Tag.objects.none(), - widget=forms.Select(attrs={ + widget=TagSelect(attrs={ 'class': 'form-control', }) ) @@ -73,7 +107,7 @@ class TagSingleForm(TagForm): def field(self): return self.fields['tag'] - def initial(self): + def get_initial(self): return self.instance.tags.get(category=self.category) def cleaned_tags(self): @@ -91,7 +125,7 @@ class TagMultipleForm(TagForm): def field(self): return self.fields['tags'] - def initial(self): + def get_initial(self): return self.instance.tags.filter(category=self.category) def cleaned_tags(self):