Skip to content

Instantly share code, notes, and snippets.

@robert8138
Last active March 31, 2016 05:08
Show Gist options
  • Save robert8138/5a6749cfec39a991a122 to your computer and use it in GitHub Desktop.
Save robert8138/5a6749cfec39a991a122 to your computer and use it in GitHub Desktop.
@webapp.route('/dbdisplay')
def display():
return render_template("dbdisplay.html",
events = Events.query.all())
@webapp.route('/dbdisplay/<event_type>')
def display_by_event_type(event_type):
return render_template("dbdisplay.html",
events = (Events.query
.filter_by(event_type = event_type)
.all()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment