1
0
Fork 0

User profile page styles

This commit is contained in:
Mouse Reeve 2020-09-29 13:39:44 -07:00
parent c7520b5279
commit 37a0ec0ba3
6 changed files with 67 additions and 55 deletions

View file

@ -3,18 +3,20 @@
{% block content %}
{% include 'user_header.html' %}
<div class="content-container">
<h2>Following</h2>
<div class="block">
<h2 class="title">Following</h2>
{% for follower in user.following.all %}
<div class="row shrink">
<div>
{% include 'snippets/avatar.html' with user=follower %}
</div>
<div>
{% include 'snippets/username.html' with user=follower show_full=True %}
</div>
<div>
{% include 'snippets/follow_button.html' with user=follower %}
<div class="block">
<div class="field is-grouped">
<div class="control">
{% include 'snippets/avatar.html' with user=follower %}
</div>
<div class="control">
{% include 'snippets/username.html' with user=follower show_full=True %}
</div>
<div class="control">
{% include 'snippets/follow_button.html' with user=follower %}
</div>
</div>
</div>
{% endfor %}