Skip to content

Instantly share code, notes, and snippets.

@marknagelberg
Created October 14, 2018 00:27
Show Gist options
  • Save marknagelberg/5b2237cc9157bdbe84b9b3283d0ba133 to your computer and use it in GitHub Desktop.
Save marknagelberg/5b2237cc9157bdbe84b9b3283d0ba133 to your computer and use it in GitHub Desktop.
Updated index.html to print loaded data from database
<h1>Hello World!</h1>
<br>
<h3>Please enter a name:</h3>
<form method=post>
{{ form.csrf_token }}
{{ form.name.label }}
{{ form.name}}
{{ form.submit }}
</form>
{% for name in names %}
<br>
{{ name.name }}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment