2021-02-28 02:48:10 +00:00
{% load i18n %}
2022-01-08 20:05:42 +00:00
{% load interaction %}
2022-01-05 20:55:19 +00:00
2020-03-27 17:11:32 +00:00
{% if request.user == user or not request.user.is_authenticated %}
2022-01-08 20:05:42 +00:00
{# nothing to see here -- either it's yourself or your logged out #}
{% else %}
{% get_relationship user as relationship %}
{% if relationship.is_blocked %}
2021-05-23 03:36:30 +00:00
{% include 'snippets/block_button.html' with blocks=True %}
2020-03-21 21:29:39 +00:00
{% else %}
2021-03-26 17:32:42 +00:00
< div class = "field{% if not minimal %} has-addons{% else %} mb-0{% endif %}" >
2021-02-23 20:10:54 +00:00
< div class = "control" >
2022-01-08 20:05:42 +00:00
< form action = "{% url 'follow' %}" method = "POST" class = "interaction follow_{{ user.id }} {% if relationship.is_following or relationship.is_follow_pending %}is-hidden{%endif %}" data-id = "follow_{{ user.id }}" >
2021-02-23 20:10:54 +00:00
{% csrf_token %}
< input type = "hidden" name = "user" value = "{{ user.username }}" >
2021-08-07 21:38:19 +00:00
< button class = "button is-small{% if not minimal %} is-link{% endif %}" type = "submit" >
{% if show_username %}
{% blocktrans with username=user.localname %}Follow @{{ username }}{% endblocktrans %}
{% else %}
{% trans "Follow" %}
{% endif %}
< / button >
2021-02-23 20:10:54 +00:00
< / form >
2022-01-08 20:05:42 +00:00
< form action = "{% url 'unfollow' %}" method = "POST" class = "interaction follow_{{ user.id }} {% if not relationship.is_following and not relationship.is_follow_pending %}is-hidden{%endif %}" data-id = "follow_{{ user.id }}" >
2021-02-23 20:10:54 +00:00
{% csrf_token %}
< input type = "hidden" name = "user" value = "{{ user.username }}" >
2022-01-08 20:05:42 +00:00
{% if user.manually_approves_followers and not relationship.is_following %}
2021-08-07 21:38:19 +00:00
< button class = "button is-small is-danger is-light" type = "submit" >
{% trans "Undo follow request" %}
< / button >
2021-03-13 22:48:15 +00:00
{% else %}
2021-08-07 21:38:19 +00:00
< button class = "button is-small is-danger is-light" type = "submit" >
{% if show_username %}
{% blocktrans with username=user.localname %}Unfollow @{{ username }}{% endblocktrans %}
{% else %}
{% trans "Unfollow" %}
{% endif %}
< / button >
2021-03-13 22:48:15 +00:00
{% endif %}
2021-02-23 20:10:54 +00:00
< / form >
< / div >
2021-03-26 17:32:42 +00:00
{% if not minimal %}
2021-02-23 20:10:54 +00:00
< div class = "control" >
{% include 'snippets/user_options.html' with user=user class="is-small" %}
< / div >
2021-03-26 17:32:42 +00:00
{% endif %}
2021-02-23 20:10:54 +00:00
< / div >
2022-01-08 20:05:42 +00:00
{% endif %}
2020-02-22 20:57:13 +00:00
{% endif %}