1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 23:05:10 +01: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

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)