コード例 #1
0
ファイル: developer.py プロジェクト: chopachom/coltrane
def index():
    developers_app = Application.find(author=warden.current_user())
    return render_template('developer/index.html', apps=developers_app)
コード例 #2
0
ファイル: appstore.py プロジェクト: chopachom/coltrane
def by_author(nickname):
    author = User.get(nickname)
    apps = Application.find(author)
    return render_template('appstore/by_author.html', apps=apps, author=author)