Skip to content

Instantly share code, notes, and snippets.

@mmtechslv
Created April 7, 2021 15:48
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 mmtechslv/0f82b9610072d2c997ecdbab0e0e444f to your computer and use it in GitHub Desktop.
Save mmtechslv/0f82b9610072d2c997ecdbab0e0e444f to your computer and use it in GitHub Desktop.
Markdium-Introduction
<form method="get">
{{ people_filter.form.as_p }}
<input type="submit" />
</form>
<table border='1' style="width:100%; text-align:center">
<thead>
<tr>
<th> Name </th>
<th> Surname </th>
<th> Age </th>
</tr>
</thead>
<tbody>
{% for person in people_filter.qs %}
<tr>
<td> {{ person.name }} </td>
<td> {{ person.surname }} </td>
<td> {{ person.age }} </td>
</tr>
{% endfor %}
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment