Skip to content
Snippets Groups Projects
Commit a0969e80 authored by mounouar21's avatar mounouar21
Browse files

[Progress] showing all wishlists on the wishlist page

parent 1676ef60
No related branches found
No related tags found
No related merge requests found
...@@ -16,12 +16,13 @@ ...@@ -16,12 +16,13 @@
</div> </div>
<div class="container"> <div class="container">
{% for wishlist in Wishlists %}
<div class="wishlist"> <div class="wishlist">
<h2>wish list 1 title</h2> <h2>{{ wishlist.title }}</h2>
<div class="wishlist-items"> <div class="wishlist-items">
<div class="wishlist-item">📷</div> {% for item in wishlist.items %}
<div class="wishlist-item">📷</div> <div class="wishlist-item">📷</div>
<div class="wishlist-item">📷</div> {% endfor %}
</div> </div>
<p class="wishlist-footer">Authors: name1, name2</p> <p class="wishlist-footer">Authors: name1, name2</p>
<div class="wishlist-actions"> <div class="wishlist-actions">
...@@ -30,20 +31,6 @@ ...@@ -30,20 +31,6 @@
<button title="Delete wishlist">🗑</button> <button title="Delete wishlist">🗑</button>
</div> </div>
</div> </div>
{% end for %}
<div class="wishlist">
<h2>wish list 2 title</h2>
<div class="wishlist-items">
<div class="wishlist-item">📷</div>
<div class="wishlist-item">📷</div>
<div class="wishlist-item">📷</div>
</div>
<p class="wishlist-footer">Authors: name1</p>
<div class="wishlist-actions">
<button title="Share wishlist"></button>
<button title="Edit title"></button>
<button title="Delete wishlist">🗑</button>
</div>
</div>
</div> </div>
{% endblock %} {% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment