update predavanja

This commit is contained in:
msinkec 2021-06-11 13:22:15 +02:00
parent d2e3fd1117
commit 540f54dd06
2 changed files with 7 additions and 7 deletions

View File

@ -122,10 +122,10 @@ class UploadHandlerPredavanja(UploadHandler):
or not keywords: or not keywords:
return 'Izpolnite vsa obvezna polja.' return 'Izpolnite vsa obvezna polja.'
for keyword in keywords.split(','): #for keyword in keywords.split(','):
keyword = keyword.strip() # keyword = keyword.strip()
if keyword.isspace() or not keyword.replace(' ', '').isalpha(): # if keyword.isspace() or not keyword.replace(' ', '').isalpha():
return 'Ključna beseda "{}" ni pravilnega formata.'.format(keyword) # return 'Ključna beseda "{}" ni pravilnega formata.'.format(keyword)
if not re.search(REGEX_EMAIL, email): if not re.search(REGEX_EMAIL, email):
return 'Email napačnega formata.' return 'Email napačnega formata.'

View File

@ -97,7 +97,7 @@
} }
const reEmail = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; const reEmail = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
const reKeyword = /^[a-zA-Zščđ枊ČĐĆŽ, ]+$/; //const reKeyword = /^[a-zA-Zščđ枊ČĐĆŽ, \-]+$/;
Dropzone.options.myDropzone = { // The camelized version of the ID of the form element Dropzone.options.myDropzone = { // The camelized version of the ID of the form element
url: "/predavanja/upload", url: "/predavanja/upload",
@ -149,8 +149,8 @@
alert("Izpolnite vsa obvezna polja!"); alert("Izpolnite vsa obvezna polja!");
} else if (!reEmail.test(email.toLowerCase())) { } else if (!reEmail.test(email.toLowerCase())) {
alert("Email napačnega formata!"); alert("Email napačnega formata!");
} else if (!reKeyword.test(kljucneBesede)) { // } else if (!reKeyword.test(kljucneBesede)) {
alert("Ključne besede so napačnega formata! Besede ločujte z vejico. Besede naj ne vsebujejo posebnih znakov."); // alert("Ključne besede so napačnega formata! Besede ločujte z vejico. Besede naj ne vsebujejo posebnih znakov.");
} else if (ime.length > 100 || } else if (ime.length > 100 ||
naslov.length > 100 || naslov.length > 100 ||
predmet.length > 100 || predmet.length > 100 ||