Created
June 3, 2015 02:12
-
-
Save guyjacks/6c331a6be90174fcba4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@app.route('/') | |
def index(): | |
print('index hit') | |
films = Film.query.all() | |
return render_template('index.html', films=films) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment