You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
474 B
HTML
35 lines
474 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
<h1 class="page-header">Stacks</h1>
|
|
<p>These are all the stacks that have been built so far.</p>
|
|
<p><a href= {{ url_for('add_stack') }}>Add a new stack</a></p>
|
|
|
|
|
|
<table style="width:100%">
|
|
|
|
<div id="tabs">
|
|
<ul>
|
|
{% for stack in stacks %}
|
|
|
|
<li> <a href="stacks/tab/{{ stack.id }}">
|
|
|
|
{{ stack.stack_name }}
|
|
</a></td>
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|
|
<br>
|
|
<br>
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|