remotes/1693045480750635534/spooky-22
kek7198 2021-12-06 01:09:02 -06:00
parent 6bdd455cee
commit f6298721c0
1 changed files with 81 additions and 2 deletions

View File

@ -149,7 +149,86 @@
</li>
{% endif %}
{% endif %}
{% if v %}
<!-- Requires auth and admin and author -->
{% if v.admin_level >=3 or v.id == p.author.id and v.paid_dues %}
<li>
<hr class="mt-2 mb-1.5 border-t border-black h-1 shadow-inset-t-white-05"/>
</li>
<li class="{% if p.club %}hidden{% endif %}">
<button id="club-{{p.id}}" class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/toggle_club/{{p.id}}','club-{{p.id}}','unclub-{{p.id}}')">
<i class="fas fa-eye-slash fa-sm fa-fw mr-4"></i>Mark club
</button>
</li>
<li class="{% if not p.club %}hidden{% endif %}">
<button id="unclub-{{p.id}}" class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/toggle_club/{{p.id}}','club-{{p.id}}','unclub-{{p.id}}')"><i class="fas fa-eye fa-sm fa-fw mr-4"></i>Unmark club
</button>
</li>
{% endif %}
<!-- Requires admin and post has been reported -->
{% if v.admin_level >=3 %}
<!-- Requires non author -->
{% if v.id != p.author.id %}
<li id="remove-{{p.id}}" class="{% if p.is_banned %}hidden{% endif %} text-red-600">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-red-600 hover:text-white bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/ban_post/{{p.id}}','remove-{{p.id}}','approve-{{p.id}}')">
<i class="fas fa-ban fa-sm fa-fw mr-4"></i>Remove
</button>
</li>
{% endif %}
<li id="approve-{{p.id}}" class="{% if not p.is_banned %}hidden{% endif %}">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/unban_post/{{p.id}}','remove-{{p.id}}','approve-{{p.id}}')">
<i class="fas fa-check fa-sm fa-fw mr-4"></i>Approve
</button>
</li>
{% endif %}
<!-- Requires admin or author -->
{% if v.id == p.author_id or v.admin_level >= 3 %}
<li id="mark-{{p.id}}" class="{% if p.over_18 %}hidden{% endif %}">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-red-600 hover:text-white bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/toggle_post_nsfw/{{p.id}}','mark-{{p.id}}','unmark-{{p.id}}')">
<i class="fas fa-eye-evil fa-sm fa-fw mr-4"></i>Mark +18
</button>
</li>
<li id="unmark-{{p.id}}" class="{% if not p.over_18 %}hidden{% endif %}">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/toggle_post_nsfw/{{p.id}}','mark-{{p.id}}','unmark-{{p.id}}')">
<i class="fas fa-eye-evil fa-sm fa-fw mr-4"></i>Unmark +18
</button>
</li>
{% endif %}
{% if v.id != p.author_id and v.admin_level == 1 %}
<li id="sex-user-{{p.id}}" class="{% if p.is_blocking %}hidden{% endif %} text-red-600">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-red-600 hover:text-white bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/settings/block?username={{p.author.username}}','sex-user-{{p.id}}','unsex-user-{{p.id}}')">
<i class="fas fa-user-slash fa-sm fa-fw mr-4"></i>Ban user
</button>
</li>
<li id="unsex-user-{{p.id}}" class="{% if not p.is_blocking %}hidden{% endif %}">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast2('/settings/unblock?username={{p.author.username}}','sex-user-{{p.id}}','unsex-user-{{p.id}}')">
<i class="fas fa-user-check fa-sm fa-fw mr-4"></i>Unban user
</button>
</li>
{% endif %}
{% if v.admin_level >=3 and v.id != p.author_id %}
<li id="ban-{{p.id}}" class="{% if p.author.is_suspended %}hidden{% endif %} text-red-600">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-red-600 hover:text-white bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" data-bs-toggle="modal" data-bs-target="#banModal" onclick="banModal('/post/{{p.id}}', '{{ p.author.id }}', '{{p.author.username}}')">
<i class="fas fa-user-slash fa-sm fa-fw mr-4"></i>Ban user
</button>
</li>
<li id="unban-{{p.id}}" class="{% if not p.author.is_suspended %}hidden{% endif %}">
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" id="unexile2-user-{{p.id}}" onclick="post_toast2('/unban_user/{{p.author_id}}','ban-{{p.id}}','unban-{{p.id}}')">
<i class="fas fa-user-check fa-sm fa-fw mr-4"></i>Unban user
</button>
</li>
{% endif %}
<!-- Requires super admin and app -->
{% if v.admin_level >= 4 and p.oauth_app %}
<li>
<a class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" href="{{p.oauth_app.permalink}}">
<i class="fas fa-code fa-sm fa-fw mr-4"></i>API App
</a>
</li>
{% endif %}
<!-- Requires not author -->
{% if not v.id==p.author_id and not p.award_count('ghosts') %}
<li>
@ -171,6 +250,7 @@
</button>
</li>
{% endif %}
{% endif %}
<li>
<hr class="mt-2 mb-1.5 border-t border-black h-1 shadow-inset-t-white-05"/>
</li>
@ -182,5 +262,4 @@
</ul>
</div>
</li>
{% endif %}
</ul>