Skip to content

Instantly share code, notes, and snippets.

@albe-rosado
Created November 22, 2016 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save albe-rosado/4de7164136d11782aa37a9a973e7e20d to your computer and use it in GitHub Desktop.
Save albe-rosado/4de7164136d11782aa37a9a973e7e20d to your computer and use it in GitHub Desktop.
@app.route('/path', methods=['GET', 'POST'])
def page():
visible = 'none'
# to make the section hide or
visible = 'true'
# to be displayed
# then you can choose wheter or not show it, just changing the value of "visible"
return render_template('template.html', visible=visible)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment