diff --git a/digimarks.py b/digimarks.py index 639b517..e83f76e 100644 --- a/digimarks.py +++ b/digimarks.py @@ -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) diff --git a/static/css/digimarks.css b/static/css/digimarks.css index 7e1e86e..34c79b3 100644 --- a/static/css/digimarks.css +++ b/static/css/digimarks.css @@ -26,3 +26,10 @@ .input-field .prefix.active { color: #000; } + + + /* Card title anchor colour */ + .white-text .card-title a + { + color: #FFF; + } diff --git a/templates/bookmarks.html b/templates/bookmarks.html index c74387a..0d76594 100644 --- a/templates/bookmarks.html +++ b/templates/bookmarks.html @@ -3,7 +3,7 @@ {% block pageheader %}Bookmarks{% endblock %} {% block pagecontent %}
{{ bookmark.created_date.strftime("%m/%d/%Y %H:%M") }}