mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-16 07:45:51 +00:00
1.2 KiB
1.2 KiB
{% extends 'base.html' %}
{% block content %}
{% for post in posts %} {% include '_post.html' %} {% endfor %} {% endblock %}
|
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 %} {% 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 %}