Exemplo n.º 1
0
def drafts():
    query = Entry.drafts().order_by(Entry.timestamp.desc())
    return object_list('index.html', query)
Exemplo n.º 2
0
def index():
    query, search_query = index_func()
    return object_list('index.html', query, search=search_query)