mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
14 lines
318 B
HTML
14 lines
318 B
HTML
{% 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 %}
|
|
|