xppl/app/templates/show_stacks.html

41 lines
632 B
HTML
Raw Normal View History

2018-05-31 18:04:05 +02:00
{% 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>
<table style="width:100%">
2018-06-03 14:01:59 +02:00
<div id="tabs">
<ul>
{% for stack in stacks %}
2018-05-31 18:04:05 +02:00
<li> <a href="stacks/tab/{{ stack.id }}">{{ stack.stack_name }}</a></td>
2018-05-31 18:04:05 +02:00
{% endfor %}
</ul>
</div>
2018-06-03 14:01:59 +02:00
<br>
<br>
2018-05-31 18:04:05 +02:00
2018-06-05 12:22:09 +02:00
<h1 class='page-header'><a href= {{ url_for('add_stack') }}>Add Stack</a></h1>
2018-06-03 14:01:59 +02:00
2018-06-05 12:22:09 +02:00
<!--
2018-05-31 18:04:05 +02:00
<div id="draggable" class="ui-widget-content">
<p>List of books</p>
</div>
<div id="droppable" class="ui-widget-header">
<p>Stack</p>
</div>
2018-06-05 12:22:09 +02:00
-->
2018-05-31 18:04:05 +02:00
</div>
{% endblock %}