Coverage for bookie.views.tags : 69%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
"""Controllers related to viewing Tag information"""
def tag_list(request): """Display a list of your tags""" rdict = request.matchdict username = rdict.get("username", None)
tags_found = TagMgr.find(username=username)
return { 'tag_list': tags_found, 'tag_count': len(tags_found), 'username': username, }
def bmark_list(request): """Display the list of bookmarks for this tag""" # Removed because view was deprecated return bmarks.recent(request) |