add: allow users to block users who have blocked them/private users
fix: anonymous post page panic add: allow users to select home timeline
This commit is contained in:
parent
2460e2f8c5
commit
d42375441f
15 changed files with 313 additions and 122 deletions
|
@ -33,6 +33,75 @@
|
|||
|
||||
<div class="w-full flex flex-col gap-2" data-tab="account">
|
||||
<div class="card tertiary flex flex-col gap-2" id="account_settings">
|
||||
<div class="card-nest" ui_ident="home_timeline">
|
||||
<div class="card small">
|
||||
<b>Home timeline</b>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<select
|
||||
onchange="set_setting_field('default_timeline', event.target.selectedOptions[0].value)"
|
||||
>
|
||||
<option
|
||||
value="MyCommunities"
|
||||
selected="{% if home == '/' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
My communities
|
||||
</option>
|
||||
<option
|
||||
value="MyCommunitiesQuestions"
|
||||
selected="{% if home == '/questions' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
My communities (questions)
|
||||
</option>
|
||||
|
||||
<option
|
||||
value="PopularPosts"
|
||||
selected="{% if home == '/popular' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
Popular
|
||||
</option>
|
||||
<option
|
||||
value="PopularQuestions"
|
||||
selected="{% if home == '/popular/questions' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
Popular (questions)
|
||||
</option>
|
||||
|
||||
<option
|
||||
value="FollowingPosts"
|
||||
selected="{% if home == '/following' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
Following
|
||||
</option>
|
||||
<option
|
||||
value="FollowingQuestions"
|
||||
selected="{% if home == '/following/questions' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
Following (questions)
|
||||
</option>
|
||||
|
||||
<option
|
||||
value="AllPosts"
|
||||
selected="{% if home == '/all' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
All
|
||||
</option>
|
||||
<option
|
||||
value="AllQuestions"
|
||||
selected="{% if home == '/all/questions' %}true{% else %}false{% endif %}"
|
||||
>
|
||||
All (questions)
|
||||
</option>
|
||||
</select>
|
||||
|
||||
<span class="fade"
|
||||
>This represents the timeline the home button takes you
|
||||
to.</span
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-nest" ui_ident="change_password">
|
||||
<div class="card small">
|
||||
<b>{{ text "settings:label.change_password" }}</b>
|
||||
|
@ -737,6 +806,7 @@
|
|||
const theme_settings = document.getElementById("theme_settings");
|
||||
|
||||
ui.refresh_container(account_settings, [
|
||||
"home_timeline",
|
||||
"change_password",
|
||||
"change_username",
|
||||
"two_factor_authentication",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue