diff --git a/frontend/forms.py b/frontend/forms.py index 654b65c0..c854b0aa 100644 --- a/frontend/forms.py +++ b/frontend/forms.py @@ -86,7 +86,12 @@ bisac_headings = BisacHeading.objects.all() class EditionForm(forms.ModelForm): add_author = forms.CharField(max_length=500, required=False) add_author_relation = forms.ChoiceField(choices=CREATOR_RELATIONS, initial=('aut', 'Author')) - add_subject = forms.CharField(max_length=200, required=False) + add_subject = AutoCompleteSelectField( + SubjectLookup, + widget=AutoCompleteSelectWidget(SubjectLookup,allow_new=True), + label='Keyword', + required =False + ) bisac = forms.ModelChoiceField( bisac_headings, required=False ) publisher_name = AutoCompleteSelectField( diff --git a/frontend/templates/new_edition.html b/frontend/templates/new_edition.html index a195bf98..69dcfa66 100644 --- a/frontend/templates/new_edition.html +++ b/frontend/templates/new_edition.html @@ -51,7 +51,31 @@ ul.fancytree-container { return true; }); - }); + $j().ready(function(){ + var contentblock = $j('#content-block'); + contentblock.on("click", "span.deletebutton", function () { + var kw = $j(this).attr('data'); + var li = $j(this).parent(); + + // perform action + jQuery.post('{% url 'kw_edit' edition.work.id %}', {'remove_kw': kw, 'csrfmiddlewaretoken': '{{ csrf_token }}' }, function(data) { + li.html('kw removed'); + }); + }); + // this is the id of the submit button + + $j('#add_subject_submit').click(function(event) { + data= $j('#id_add_subject_0').attr('value') + if (data == 'xxbadform'){ + alert("bad keyword"); + } else { + $j('#kw_list').append('
Title and ISBN 13 are required; the rest is optional, though a cover image is strongly recommended.
-