Adds actor

This commit is contained in:
Mouse Reeve
2020-01-26 12:14:27 -08:00
parent e357f4a7a6
commit e30e06c283
10 changed files with 225 additions and 22 deletions

View File

@ -21,12 +21,12 @@
<div id="top-bar">
<header>
<div id="branding">📚FediReads</div>
<div id="branding"><a href="/">📚FediReads</a></div>
<div>
<div id="account">
{% if user.is_authenticated %}
<form name="logout" action="/logout/" method="post">
Welcome, {{ user.username }}
Welcome, {{ request.user.username }}
<input type="submit" value="Log out"></input>
</form>
{% else %}

View File

@ -0,0 +1,29 @@
{% extends 'layout.html' %}
{% block content %}
<div id="main">
<div class="user-profile">
<img class="user-pic" src="/static/images/profile.jpg">
<h2>{{ user.username }}</h2>
<p>Since {{ user.created_date }}</p>
{% if not is_self %}
{% if not following %}
<form action="/follow/" method="post">
<input type="hidden" name="user" value="{{ user.id }}"></input>
<input type="submit" value="Follow"></input>
</form>
{% else %}
<form action="/unfollow/" method="post">
<input type="hidden" name="user" value="{{ user.id }}"></input>
<input type="submit" value="Unfollow"></input>
</form>
{% endif %}
{% endif %}
</div>
{% for book in books.all %}
<div class="book">
{{ book.data.title }} by {{ book.authors.first.data.name }}
</div>
{% endfor %}
</div>
{% endblock %}