Skip to content

Instantly share code, notes, and snippets.

@techbrownbags
Last active April 4, 2019 16:53
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 techbrownbags/d8e5955cc8dd48789203ac011b47f3c8 to your computer and use it in GitHub Desktop.
Save techbrownbags/d8e5955cc8dd48789203ac011b47f3c8 to your computer and use it in GitHub Desktop.
{% block content %}
<table class="table table-striped table-bordered table-condensed table-hover">
<thead>
<tr>
<th class="">Id</th>
<th class="">Name</th>
<th class="">Site</th>
</thead>
<tbody>
{% for system in systems %}
<tr>
<td>{{ system.system_id }}</td>
<td>{{ system.name }}</td>
<td>{{ system.site.site_name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock content %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment