xppl/app/templates/show_stack_detail.html

28 lines
531 B
HTML
Raw Normal View History

2018-05-31 18:04:05 +02:00
{% block main %}
<div class="container">
<h1 class="header">{{ stack.stack_name }}</h1>
<p>Stack description:
{% for stack in stacks %}
2018-06-03 14:01:59 +02:00
<a href="{{url_for('show_stack_by_id', id=stack.id)}}">{{ stack.stack_description }}</a>
2018-05-31 18:04:05 +02:00
{% endfor %}
</p>
<p>Books in this stack: {% for book in stack.books %}
<li> <a href="{{url_for('show_book_by_id', id=book.id)}}">{{book.title}}</a> </li>
{% endfor %}</p>
<br>
<br>
2018-06-03 14:01:59 +02:00
<p><a href="{{url_for('show_stacks')}}">Go back to stacks</p>
2018-05-31 18:04:05 +02:00
</div>
{% endblock %}