Last active
March 24, 2016 15:54
-
-
Save robert8138/49f8d7fdcd9c2c62b2ce 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
@webapp.route('/user') | |
def user(): | |
user_dict = {'first': 'Robert', 'last': 'Chang', 'twitter_handle': '@_rchang'} | |
return render_template("user.html", user = user_dict) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment