Make shelf names required unique
This commit is contained in:
parent
350285607b
commit
2b846b1e6b
|
@ -477,12 +477,16 @@ def create_shelf():
|
||||||
shelf.is_public = 1
|
shelf.is_public = 1
|
||||||
shelf.name = to_save["title"]
|
shelf.name = to_save["title"]
|
||||||
shelf.user_id = int(current_user.id)
|
shelf.user_id = int(current_user.id)
|
||||||
|
existing_shelf = ub.session.query(ub.Shelf).filter(ub.Shelf.name == shelf.name).first()
|
||||||
|
if existing_shelf:
|
||||||
|
flash("A shelf with the name '%s' already exists." % to_save["title"], category="error")
|
||||||
|
else:
|
||||||
try:
|
try:
|
||||||
ub.session.add(shelf)
|
ub.session.add(shelf)
|
||||||
ub.session.commit()
|
ub.session.commit()
|
||||||
flash("Shelf %s created" % to_save["title"], category="success")
|
flash("Shelf %s created" % to_save["title"], category="success")
|
||||||
except:
|
except:
|
||||||
flash("there was an error", category="error")
|
flash("There was an error", category="error")
|
||||||
return render_template('shelf_edit.html', title="create a shelf")
|
return render_template('shelf_edit.html', title="create a shelf")
|
||||||
else:
|
else:
|
||||||
return render_template('shelf_edit.html', title="create a shelf")
|
return render_template('shelf_edit.html', title="create a shelf")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user