Skip to content

Instantly share code, notes, and snippets.

@robert8138
Created March 19, 2016 23:46
Show Gist options
  • Save robert8138/495ce72ccf73bd36f038 to your computer and use it in GitHub Desktop.
Save robert8138/495ce72ccf73bd36f038 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block title %} User's Page {% endblock %}
{% block content %}
<h1> User </h1>
<table border=1>
<tbody>
<tr>
{% for info in user_dict %}
<td>{{ info }}</td>
{% endfor %}
</tr>
</tbody>
</table>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment