コード例 #1
0
ファイル: pages.py プロジェクト: rebootl/rubric-dyn
def history():
    '''show all history entries'''
    # get entries
    rows = get_entrylist('history')

    return render_template( 'history.html',
                            title = 'Page history',
                            history = rows )
コード例 #2
0
ファイル: pages.py プロジェクト: rebootl/rubric-dyn
def latest():
    '''show all latest entries'''
    # get entries
    rows = get_entrylist('latest')

    return render_template( 'latest.html',
                            title = 'Latest',
                            latest = rows )