1
0
Fork 0

User shelves page

This commit is contained in:
Mouse Reeve 2020-03-16 17:29:37 -07:00
parent e1c598b7cf
commit ff1099d23e
6 changed files with 32 additions and 5 deletions

View file

@ -0,0 +1,14 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
{% include 'user_header.html' with user=user %}
{% for shelf in shelves %}
<div class="content-container">
<h2>{{ shelf.name }}</h2>
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
{% endfor %}
{% endblock %}