moviewyrm/bookwyrm/templates/user.html

25 lines
514 B
HTML
Raw Normal View History

2020-01-26 20:14:27 +00:00
{% extends 'layout.html' %}
{% block content %}
2020-09-29 20:17:29 +00:00
<div class="block">
2020-03-17 00:09:45 +00:00
{% include 'user_header.html' with user=user %}
2020-09-29 20:17:29 +00:00
</div>
2020-01-26 20:14:27 +00:00
2020-03-16 23:10:59 +00:00
<div>
2020-09-29 20:17:29 +00:00
<div class="block">
<h2 class="title">User Activity</h2>
</div>
2020-03-16 23:10:59 +00:00
{% for activity in activities %}
2020-09-29 20:17:29 +00:00
<div class="block">
2020-03-16 23:10:59 +00:00
{% include 'snippets/status.html' with status=activity %}
2020-01-29 23:10:32 +00:00
</div>
{% endfor %}
2020-03-17 00:09:45 +00:00
{% if not activities %}
<div class="content-container">
<p>No activities yet!</a>
</div>
{% endif %}
2020-01-26 20:14:27 +00:00
</div>
2020-01-29 23:10:32 +00:00
2020-01-26 20:14:27 +00:00
{% endblock %}