Coverage for marvin.views.stats : 100%

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
""" marvin.views.stats ~~~~~~~~~~~~~~~~~~
Show some key numbers about the current marvin database.
"""
def stats_main(): """ Show some key numbers. """ 'Number of movies': Movie.query.count(), 'Number of streams': Stream.query.count(), 'Number of entries': Entry.query.count(), 'Number of users': User.query.count(), } |