forked from XPUB/XPPL
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.
19 lines
351 B
HTML
19 lines
351 B
HTML
7 years ago
|
{% block main %}
|
||
|
<div class="container">
|
||
|
|
||
|
<h1 class="header">{{ stack.stack_name }}</h1>
|
||
|
|
||
|
|
||
|
<p>Stack description: {{ stack.stack_description }} </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>
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
{% endblock %}
|