mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-29 19:40:32 +00:00
User profile page
This commit is contained in:
parent
3dc43aa81c
commit
c7520b5279
2 changed files with 7 additions and 4 deletions
|
@ -9,7 +9,7 @@
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<div class="">
|
<div>
|
||||||
{% if prev %}
|
{% if prev %}
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ prev }}">
|
<a href="{{ prev }}">
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
{% extends 'layout.html' %}
|
{% extends 'layout.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
<div class="block">
|
||||||
{% include 'user_header.html' with user=user %}
|
{% include 'user_header.html' with user=user %}
|
||||||
{% include 'snippets/covers_shelf.html' with shelves=shelves user=user %}
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div class="content-container"><h2>User Activity</h2></div>
|
<div class="block">
|
||||||
|
<h2 class="title">User Activity</h2>
|
||||||
|
</div>
|
||||||
{% for activity in activities %}
|
{% for activity in activities %}
|
||||||
<div class="content-container">
|
<div class="block">
|
||||||
{% include 'snippets/status.html' with status=activity %}
|
{% include 'snippets/status.html' with status=activity %}
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue