예제 #1
0
def list_unread():
    notifications = Notifications('list_unread')
    return notifications.render("app/notification/list_unread")
예제 #2
0
def list_unread():
    notifications = Notifications()
    notifications.list_unread(session.auth.user.id)
    return notifications.render("app/notification/list_unread")
예제 #3
0
def list_latest():
    notifications = Notifications('list_latest')
    return notifications.render("app/notification/list_latest")
예제 #4
0
def list_latest():
    notifications = Notifications()
    notifications.list_latest(session.auth.user.id)
    return notifications.render("app/notification/list_latest")