diff --git a/app/templates/add_to_stacks.html b/app/templates/add_to_stacks.html index 144b15b..c2ed248 100644 --- a/app/templates/add_to_stacks.html +++ b/app/templates/add_to_stacks.html @@ -16,22 +16,6 @@ - - -
-
-

Build a stack

- -

Add Stack

- -
-

List of books

-
- -
-

Stack

-
- {% endblock %} diff --git a/app/templates/show_stack_detail.html b/app/templates/show_stack_detail.html index 9f8dbca..39f5539 100644 --- a/app/templates/show_stack_detail.html +++ b/app/templates/show_stack_detail.html @@ -5,11 +5,11 @@

{{ stack.stack_name }}

-

{{ stack.stack_description }}

Books in this stack: {% for book in stack.books %}

  • {{book.title}}
  • + {% endfor %}

    diff --git a/app/templates/show_stack_detail_tab.html b/app/templates/show_stack_detail_tab.html index c82d9ba..029d5a9 100644 --- a/app/templates/show_stack_detail_tab.html +++ b/app/templates/show_stack_detail_tab.html @@ -13,8 +13,12 @@

    Books in this stack: {% for book in stack.books %} -

  • {{book.title}}
  • +
  • {{book.title}}
  • +

    + + Add to another stack +

    {% endfor %}

    diff --git a/app/templates/show_stacks.html b/app/templates/show_stacks.html index 15daff3..f1388a5 100644 --- a/app/templates/show_stacks.html +++ b/app/templates/show_stacks.html @@ -4,6 +4,8 @@

    Stacks

    These are all the stacks that have been built so far.

    +

    Add a new stack

    + @@ -26,19 +28,7 @@

    -

    Add Stack

    - - - {% endblock %}