2020-11-23 13:29:05 +13:00
|
|
|
{% extends "base.html" %}
|
2021-01-01 12:54:13 +13:00
|
|
|
{% import "utils.html" as utils %}
|
|
|
|
|
|
|
|
{% block search %}
|
2023-12-27 10:12:00 +13:00
|
|
|
{% call utils::search("".to_owned(), "") %}
|
2021-01-01 12:54:13 +13:00
|
|
|
{% endblock %}
|
|
|
|
|
2023-12-27 12:25:52 +13:00
|
|
|
{% block title %}{{ user.name.replace("u/", "") }} (u/{{ user.name }}) - Redlib{% endblock %}
|
2021-01-08 05:38:05 +13:00
|
|
|
|
2021-01-30 21:47:30 +13:00
|
|
|
{% block subscriptions %}
|
2021-01-31 11:52:18 +13:00
|
|
|
{% call utils::sub_list("") %}
|
2021-01-30 18:00:55 +13:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-11-23 13:29:05 +13:00
|
|
|
{% block body %}
|
2021-01-11 10:08:36 +13:00
|
|
|
<main>
|
2021-11-26 17:02:04 +13:00
|
|
|
{% if !is_filtered %}
|
2020-12-24 19:16:04 +13:00
|
|
|
<div id="column_one">
|
2021-01-01 12:54:13 +13:00
|
|
|
<form id="sort">
|
2022-03-14 08:06:27 +13:00
|
|
|
<div id="listing_options">
|
|
|
|
{% call utils::sort(["/user/", user.name.as_str()].concat(), ["overview", "comments", "submitted"], listing) %}
|
|
|
|
</div>
|
|
|
|
<select id="sort_select" name="sort">
|
|
|
|
{% call utils::options(sort.0, ["hot", "new", "top", "controversial"], "") %}
|
|
|
|
</select>{% if sort.0 == "top" || sort.0 == "controversial" %}<select id="timeframe" name="t">
|
2021-01-01 12:54:13 +13:00
|
|
|
{% call utils::options(sort.1, ["hour", "day", "week", "month", "year", "all"], "all") %}
|
2021-01-18 12:51:03 +13:00
|
|
|
</select>{% endif %}<button id="sort_submit" class="submit">
|
|
|
|
<svg width="15" viewBox="0 0 110 100" fill="none" stroke-width="10" stroke-linecap="round">
|
|
|
|
<path d="M20 50 H100" />
|
|
|
|
<path d="M75 15 L100 50 L75 85" />
|
|
|
|
→
|
|
|
|
</svg>
|
|
|
|
</button>
|
2020-12-24 19:16:04 +13:00
|
|
|
</form>
|
2021-01-09 14:35:04 +13:00
|
|
|
|
2022-11-08 16:54:49 +13:00
|
|
|
{% if all_posts_hidden_nsfw %}
|
|
|
|
<center>All posts are hidden because they are NSFW. Enable "Show NSFW posts" in settings to view.</center>
|
|
|
|
{% endif %}
|
|
|
|
|
2023-01-01 15:11:59 +13:00
|
|
|
{% if no_posts %}
|
|
|
|
<center>No posts were found.</center>
|
|
|
|
{% endif %}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
{% if all_posts_filtered %}
|
|
|
|
<center>(All content on this page has been filtered)</center>
|
|
|
|
{% else %}
|
2021-01-09 14:35:04 +13:00
|
|
|
<div id="posts">
|
2020-12-24 19:16:04 +13:00
|
|
|
{% for post in posts %}
|
2021-01-09 14:35:04 +13:00
|
|
|
|
2021-01-31 18:43:46 +13:00
|
|
|
{% if post.flags.nsfw && prefs.show_nsfw != "on" %}
|
2021-11-26 17:02:04 +13:00
|
|
|
{% else if !post.title.is_empty() %}
|
2021-02-04 08:11:04 +13:00
|
|
|
{% call utils::post_in_list(post) %}
|
2020-12-24 19:16:04 +13:00
|
|
|
{% else %}
|
|
|
|
<div class="comment">
|
|
|
|
<div class="comment_left">
|
2023-03-24 07:29:28 +13:00
|
|
|
<p class="comment_score" title="{{ post.score.1 }}">
|
2023-03-23 16:29:48 +13:00
|
|
|
{% if prefs.hide_score != "on" %}
|
2023-03-24 07:29:28 +13:00
|
|
|
{{ post.score.0 }}
|
|
|
|
{% else %}
|
|
|
|
•
|
2023-03-23 16:29:48 +13:00
|
|
|
{% endif %}
|
2023-03-24 07:29:28 +13:00
|
|
|
</p>
|
2020-12-28 12:37:01 +13:00
|
|
|
<div class="line"></div>
|
2020-12-24 19:16:04 +13:00
|
|
|
</div>
|
2020-12-29 15:42:46 +13:00
|
|
|
<details class="comment_right" open>
|
|
|
|
<summary class="comment_data">
|
2024-07-02 09:15:50 +12:00
|
|
|
<a class="comment_link" href="{{ post.permalink }}" title="{{ post.link_title }}">{{ post.link_title }}</a>
|
|
|
|
<span class="created"> in </span>
|
|
|
|
<a href="/r/{{ post.community }}">r/{{ post.community }}</a>
|
|
|
|
<span class="created" title="{{ post.created }}"> {{ post.rel_time }}</span>
|
2020-12-29 15:42:46 +13:00
|
|
|
</summary>
|
2022-05-21 17:28:31 +12:00
|
|
|
<p class="comment_body">{{ post.body|safe }}</p>
|
2020-12-29 15:42:46 +13:00
|
|
|
</details>
|
2021-01-04 16:44:44 +13:00
|
|
|
</div>
|
2020-12-24 19:16:04 +13:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2021-06-12 12:38:43 +12:00
|
|
|
{% if prefs.use_hls == "on" %}
|
|
|
|
<script src="/hls.min.js"></script>
|
|
|
|
<script src="/playHLSVideo.js"></script>
|
|
|
|
{% endif %}
|
2021-01-09 14:35:04 +13:00
|
|
|
</div>
|
2021-11-26 17:02:04 +13:00
|
|
|
{% endif %}
|
2021-01-09 14:35:04 +13:00
|
|
|
|
2020-12-28 09:36:10 +13:00
|
|
|
<footer>
|
|
|
|
{% if ends.0 != "" %}
|
2022-05-21 18:10:11 +12:00
|
|
|
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}" accesskey="P">PREV</a>
|
2020-12-28 09:36:10 +13:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if ends.1 != "" %}
|
2022-05-21 18:10:11 +12:00
|
|
|
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}" accesskey="N">NEXT</a>
|
2020-12-28 09:36:10 +13:00
|
|
|
{% endif %}
|
|
|
|
</footer>
|
2020-12-24 19:16:04 +13:00
|
|
|
</div>
|
2021-11-26 17:02:04 +13:00
|
|
|
{% endif %}
|
2020-12-24 19:16:04 +13:00
|
|
|
<aside>
|
2021-11-26 17:02:04 +13:00
|
|
|
{% if is_filtered %}
|
|
|
|
<center>(Content from u/{{ user.name }} has been filtered)</center>
|
|
|
|
{% endif %}
|
2021-01-04 16:44:44 +13:00
|
|
|
<div class="panel" id="user">
|
2021-09-07 07:02:52 +12:00
|
|
|
<img loading="lazy" id="user_icon" src="{{ user.icon }}" alt="User icon">
|
2022-05-22 10:47:58 +12:00
|
|
|
<h1 id="user_title">{{ user.title }}</h1>
|
2020-12-29 15:42:46 +13:00
|
|
|
<p id="user_name">u/{{ user.name }}</p>
|
|
|
|
<div id="user_description">{{ user.description }}</div>
|
|
|
|
<div id="user_details">
|
2020-12-24 19:16:04 +13:00
|
|
|
<label>Karma</label>
|
|
|
|
<label>Created</label>
|
|
|
|
<div>{{ user.karma }}</div>
|
|
|
|
<div>{{ user.created }}</div>
|
|
|
|
</div>
|
2021-11-26 17:02:04 +13:00
|
|
|
<div id="user_actions">
|
|
|
|
{% let name = ["u_", user.name.as_str()].join("") %}
|
2021-04-07 05:23:05 +12:00
|
|
|
<div id="user_subscription">
|
|
|
|
{% if prefs.subscriptions.contains(name) %}
|
2022-03-14 08:06:27 +13:00
|
|
|
<form action="/r/{{ name }}/unsubscribe?redirect={{ redirect_url }}" method="POST">
|
2021-04-07 05:23:05 +12:00
|
|
|
<button class="unsubscribe">Unfollow</button>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
2022-03-14 08:06:27 +13:00
|
|
|
<form action="/r/{{ name }}/subscribe?redirect={{ redirect_url }}" method="POST">
|
2021-04-07 05:23:05 +12:00
|
|
|
<button class="subscribe">Follow</button>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
2021-11-26 17:02:04 +13:00
|
|
|
</div>
|
|
|
|
<div id="user_filter">
|
|
|
|
{% if prefs.filters.contains(name) %}
|
2022-03-14 08:06:27 +13:00
|
|
|
<form action="/r/{{ name }}/unfilter?redirect={{ redirect_url }}" method="POST">
|
2021-11-26 17:02:04 +13:00
|
|
|
<button class="unfilter">Unfilter</button>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
2022-03-14 08:06:27 +13:00
|
|
|
<form action="/r/{{ name }}/filter?redirect={{ redirect_url }}" method="POST">
|
2021-11-26 17:02:04 +13:00
|
|
|
<button class="filter">Filter</button>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-04-07 05:23:05 +12:00
|
|
|
</div>
|
2020-11-24 08:33:43 +13:00
|
|
|
</div>
|
2020-12-24 19:16:04 +13:00
|
|
|
</aside>
|
2020-11-23 13:29:05 +13:00
|
|
|
</main>
|
2021-01-13 10:43:03 +13:00
|
|
|
{% endblock %}
|