2023-10-10 20:54:14 +00:00
|
|
|
{% extends "user_base.html" %}
|
|
|
|
{% set tab = "profile" %}
|
2024-04-29 18:26:28 +00:00
|
|
|
{% set show_activity_actors = False %}
|
2023-10-10 20:54:14 +00:00
|
|
|
|
|
|
|
{% block subtabs %}
|
2023-10-10 22:38:53 +00:00
|
|
|
<div class="row tabs">
|
|
|
|
<a></a>
|
2023-11-20 04:48:31 +00:00
|
|
|
<a href="{{ user.user_page_path() }}"
|
2023-10-10 22:38:53 +00:00
|
|
|
{% if not subtab %}class="active-tab"{% endif %}
|
|
|
|
>activity</a><a
|
2023-11-20 04:48:31 +00:00
|
|
|
href="{{ user.user_page_path('followers') }}"
|
2023-10-10 22:38:53 +00:00
|
|
|
{% if subtab == 'followers' %}class="active-tab"{% endif %}
|
|
|
|
>{{ num_followers }} follower{% if followers != '1' %}s{% endif %}</a><a
|
2023-11-20 04:48:31 +00:00
|
|
|
href="{{ user.user_page_path('following') }}"
|
2023-10-10 22:38:53 +00:00
|
|
|
{% if subtab == 'following' %}class="active-tab"{% endif %}
|
|
|
|
>following {{ num_following }}</a>
|
|
|
|
<a></a>
|
2023-10-10 20:54:14 +00:00
|
|
|
</div>
|
2023-10-10 22:38:53 +00:00
|
|
|
|
|
|
|
{% block subsubtabs %}
|
|
|
|
{% endblock subsubtabs %}
|
|
|
|
|
2023-10-10 20:54:14 +00:00
|
|
|
{% endblock subtabs %}
|