Files
microblog/app/templates/user.html
2023-06-04 01:00:41 +02:00

1.2 KiB

{% extends 'base.html' %} {% block content %}

User: {{ user.username }}

{% if user.about_me %}

{{ user.about_me }}

{% endif %} {% if user.last_seen %}

Last seen on: {{ user.last_seen }}

{% endif %}

{{ user.followers.count() }} followers, {{ user.followed.count() }} following.

{% if user == current_user %}

Edit your profile

{% elif not current_user.is_following(user) %}

{{ form.hidden_tag() }} {{ form.submit(value = 'Follow') }}

{% else %}

{{ form.hidden_tag() }} {{ form.submit(value = 'Unfollow') }}

{% endif %}
{% for post in posts %} {% include '_post.html' %} {% endfor %} {% endblock %}