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