Select Git revision
table.html 558 B
{% extends 'base.html' %}
{% block head %}
<title>Home</title>
{% endblock %}
{% block body %}
<br>
<h1>Adjacency matrix</h1>
<br>
<main role="main">
<div class="jumbotron">
<div class="col-sm-8 mx-auto">
<table>
{% for row in rows %}
<tr>
{% for cell in row %}
<td>{{cell}}</td>
{% endfor %}
</tr>
{% endfor%}
</table>
</div>
</div>
</main>
{% endblock %}/*