1
0
mirror of https://codeberg.org/diginaut/digimarks.git synced 2026-05-06 22:44:09 +02:00

Bookmark cards! Colours need to be fixed yet. Edit button works

This commit is contained in:
2016-07-18 21:40:53 +02:00
parent 017212045a
commit 104b2d8a63
3 changed files with 23 additions and 6 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ def bookmarks(userkey):
# return render_template('bookmarks.html', bookmarks)
#else:
# abort(404)
bookmarks = Bookmark.select(Bookmark.userkey == userkey)
bookmarks = Bookmark.select().where(Bookmark.userkey == userkey)
return render_template('bookmarks.html', bookmarks=bookmarks, userkey=userkey)