コード例 #1
0
ファイル: views.py プロジェクト: homoludens/EventMap
def my_events():
    
    comments = Comment.query.filter_by(uid = current_user.get_id()).order_by(db.asc(Comment.date))

    return render_template('my_events.html', comments=comments,)
コード例 #2
0
ファイル: views.py プロジェクト: homoludens/EventMap
def show_map():
    comments = Comment.query.order_by(db.asc(Comment.date))
    
    return render_template('show_map.html', comments=comments,)