Skip to content

Instantly share code, notes, and snippets.

@marmeladze
Created July 24, 2020 13:58
Show Gist options
  • Select an option

  • Save marmeladze/c8492f6d802fe690f89e6532570a52c8 to your computer and use it in GitHub Desktop.

Select an option

Save marmeladze/c8492f6d802fe690f89e6532570a52c8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head></head>
<body>
<h3>Users (<a href="/user">Add New</a>) </h3>
<table>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.first_name }}</td>
<td>{{ user.last_name }}</td>
<td>{{ user.email }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment