Skip to content
Snippets Groups Projects
Select Git revision
  • 982d6abab6419987c5808338c38b808191052697
  • master default protected
2 results

table.html

Blame
  • 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 %}/*