2022-12-09 03:35:28 +00:00
{% set path = request.path.replace("/@" + u.username, '') %}
< div class = "row no-gutters" >
< div class = "col" >
< div class = "flex-row box-shadow-bottom d-flex justify-content-center justify-content-md-between align-items-center" >
2023-02-28 17:31:51 +00:00
< ul class = "nav settings-nav" id = "content" >
2023-01-22 23:38:00 +00:00
< li class = "nav-item mr-1" >
2023-03-16 15:32:35 +00:00
< a class = "nav-link{% if path == '' %} active{% endif %}" href = "/@{{u.username}}" > Wall< / a >
2022-12-09 03:35:28 +00:00
< / li >
< li class = "nav-item" >
2023-03-16 15:32:35 +00:00
< a class = "nav-link{% if path == '/posts' %} active{% endif %}" href = "/@{{u.username}}/posts" > Posts < span class = "count" > ({{u.real_post_count(v)}})< / span > < / a >
2022-12-09 03:35:28 +00:00
< / li >
< li class = "nav-item" >
2023-03-16 15:32:35 +00:00
< a class = "nav-link{% if path == '/comments' %} active{% endif %}" href = "/@{{u.username}}/comments" > Comments < span class = "count" > ({{u.real_comment_count(v)}})< / span > < / a >
2022-12-09 03:35:28 +00:00
< / li >
{% if u.id == v.id %}
< li class = "nav-item" >
2023-03-16 15:32:35 +00:00
< a class = "nav-link{% if path == '/saved/posts' %} active{% endif %}" href = "/@{{u.username}}/saved/posts" > Saved Posts < span class = "count" > ({{u.saved_count}})< / span > < / a >
2022-12-09 03:35:28 +00:00
< / li >
< li class = "nav-item" >
2023-03-16 15:32:35 +00:00
< a class = "nav-link{% if path == '/saved/comments' %} active{% endif %}" href = "/@{{u.username}}/saved/comments" > Saved Comments < span class = "count" > ({{u.saved_comment_count}})< / span > < / a >
2022-12-09 03:35:28 +00:00
< / li >
< li class = "nav-item" >
2023-03-16 15:32:35 +00:00
< a class = "nav-link{% if path == '/subscribed/posts' %} active{% endif %}" href = "/@{{u.username}}/subscribed/posts" > Subscribed < span class = "count" > ({{u.subscribed_count}})< / span > < / a >
2022-12-09 03:35:28 +00:00
< / li >
{% endif %}
< / ul >
< / div >
< / div >
< / div >
2023-01-23 01:21:41 +00:00
{% if "/saved/" not in request.path and "/subscribed/" not in request.path and not path == '' and '/wall/comment/' not in path %}
2022-12-09 03:35:28 +00:00
< div class = "d-flex justify-content-between align-items-center" style = "padding-top:10px" >
< div class = "d-flex align-items-center" >
< div class = "dropdown dropdown-actions" >
2022-12-25 02:10:56 +00:00
< button type = "button" class = "btn btn-secondary dropdown-toggle" id = "dropdownMenuButton" data-bs-toggle = "dropdown" >
2022-12-09 03:35:28 +00:00
{% if t=="hour" %}< i class = "fas fa-clock mr-1" > < / i >
{% elif t=="day" %}< i class = "fas fa-calendar-day mr-1" > < / i >
{% elif t=="week" %}< i class = "fas fa-calendar-week mr-1" > < / i >
{% elif t=="month" %}< i class = "fas fa-calendar-alt mr-1" > < / i >
{% elif t=="year" %}< i class = "fas fa-calendar mr-1" > < / i >
{% elif t=="all" %}< i class = "fas fa-infinity mr-1" > < / i >
{% endif %}
{{t | capitalize}}
< / button >
2022-12-25 02:10:56 +00:00
< div class = "dropdown-menu" x-placement = "bottom-start" style = "position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(0px, 31px, 0px);" >
2023-03-16 15:32:35 +00:00
{% if t != "hour" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=hour" > < i class = "fas fa-clock mr-2" > < / i > Hour< / a > {% endif %}
{% if t != "day" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=day" > < i class = "fas fa-calendar-day mr-2" > < / i > Day< / a > {% endif %}
{% if t != "week" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=week" > < i class = "fas fa-calendar-week mr-2" > < / i > Week< / a > {% endif %}
{% if t != "month" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=month" > < i class = "fas fa-calendar-alt mr-2" > < / i > Month< / a > {% endif %}
{% if t != "year" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=year" > < i class = "fas fa-calendar mr-2" > < / i > Year< / a > {% endif %}
{% if t != "all" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=all" > < i class = "fas fa-infinity mr-2" > < / i > All< / a > {% endif %}
2022-12-09 03:35:28 +00:00
< / div >
< / div >
< div class = "dropdown dropdown-actions ml-3" >
2022-12-25 02:10:56 +00:00
< button type = "button" class = "btn btn-secondary dropdown-toggle" id = "dropdownMenuButton2" data-bs-toggle = "dropdown" >
2022-12-09 03:35:28 +00:00
{% if sort=="top" %}< i class = "fas fa-arrow-alt-circle-up mr-1" > < / i > {% endif %}
{% if sort=="bottom" %}< i class = "fas fa-arrow-alt-circle-down mr-1" > < / i > {% endif %}
{% if sort=="new" %}< i class = "fas fa-sparkles mr-1" > < / i > {% endif %}
{% if sort=="old" %}< i class = "fas fa-book mr-1" > < / i > {% endif %}
{% if sort=="controversial" %}< i class = "fas fa-bullhorn mr-1" > < / i > {% endif %}
2023-07-25 22:37:54 +00:00
{% if sort=="random" %}< i class = "fas fa-random mr-1" > < / i > {% endif %}
2022-12-09 03:35:28 +00:00
{{sort | capitalize}}
< / button >
2022-12-25 02:10:56 +00:00
< div class = "dropdown-menu" x-placement = "bottom-start" style = "position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(0px, 31px, 0px);" >
2023-03-16 15:32:35 +00:00
{% if sort != "top" %}< a class = "dropdown-item" href = "?sort=top&t={{t}}" > < i class = "fas fa-arrow-alt-circle-up mr-2" > < / i > Top< / a > {% endif %}
{% if sort != "bottom" %}< a class = "dropdown-item" href = "?sort=bottom&t={{t}}" > < i class = "fas fa-arrow-alt-circle-down mr-2" > < / i > Bottom< / a > {% endif %}
{% if sort != "new" %}< a class = "dropdown-item" href = "?sort=new&t={{t}}" > < i class = "fas fa-sparkles mr-2" > < / i > New< / a > {% endif %}
{% if sort != "old" %}< a class = "dropdown-item" href = "?sort=old&t={{t}}" > < i class = "fas fa-book mr-2" > < / i > Old< / a > {% endif %}
{% if sort != "controversial" %}< a class = "dropdown-item" href = "?sort=controversial&t={{t}}" > < i class = "fas fa-bullhorn mr-2" > < / i > Controversial< / a > {% endif %}
2023-06-08 01:56:12 +00:00
{% if sort != "subscriptions" and "/posts" in request.path %}< a class = "dropdown-item" href = "?sort=subscriptions&t={{t}}" > < i class = "fas fa-bell mr-2" > < / i > Subscriptions< / a > {% endif %}
{% if sort != "saves" %}< a class = "dropdown-item" href = "?sort=saves&t={{t}}" > < i class = "fas fa-save mr-2" > < / i > Saves< / a > {% endif %}
2023-07-25 22:37:54 +00:00
{% if sort != "random" %}< a class = "dropdown-item" href = "?sort=random&t={{t}}" > < i class = "fas fa-random mr-2" > < / i > Random< / a > {% endif %}
2022-12-09 03:35:28 +00:00
< / div >
< / div >
< / div >
< / div >
{% endif %}