mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
feat: improve options
This commit is contained in:
parent
23e7d65a31
commit
5ce0653292
7 changed files with 48 additions and 36 deletions
|
@ -1,15 +1,15 @@
|
||||||
<li class="dropdown-item"><a href="{{ url_for('chat.chat_delete', conversation_id=conversation.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-delete"></span>
|
<li><a href="{{ url_for('chat.chat_delete', conversation_id=conversation.id) }}" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-delete"></span>
|
||||||
{{ _('Delete conversation') }}</a></li>
|
{{ _('Delete conversation') }}</a></li>
|
||||||
{% for member in conversation.members %}
|
{% for member in conversation.members %}
|
||||||
{% if member.id != current_user.id %}
|
{% if member.id != current_user.id %}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('user.block_profile', actor=member.link()) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('user.block_profile', actor=member.link()) }}" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _('Block @%(author_name)s', author_name=member.display_name()) }}</a></li>
|
{{ _('Block @%(author_name)s', author_name=member.display_name()) }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for instance in conversation.instances() %}
|
{% for instance in conversation.instances() %}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('chat.block_instance', instance_id=instance.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('chat.block_instance', instance_id=instance.id) }}" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _("Block chats and posts from instance: %(name)s", name=instance.domain) }}</a></li>
|
{{ _("Block chats and posts from instance: %(name)s", name=instance.domain) }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('chat.chat_report', conversation_id=conversation.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-report"></span>
|
<li><a href="{{ url_for('chat.chat_report', conversation_id=conversation.id) }}" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-report"></span>
|
||||||
{{ _('Report to moderators') }}</a></li>
|
{{ _('Report to moderators') }}</a></li>
|
||||||
<p class="p-2" style="max-width: 200px;">{{ _('If you are reporting abuse then do not delete the conversation - moderators will not be able to read it if you delete it.') }}</p>
|
<p class="p-2" style="max-width: 200px;">{{ _('If you are reporting abuse then do not delete the conversation - moderators will not be able to read it if you delete it.') }}</p>
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
class="btn btn-outline-secondary">
|
class="btn btn-outline-secondary">
|
||||||
{{ _('Options') }}
|
{{ _('Options') }}
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu" style="max-width: 240px">
|
||||||
<div
|
<div
|
||||||
hx-get="{{ url_for('chat.chat_options', conversation_id=current_conversation) }}"
|
hx-get="{{ url_for('chat.chat_options', conversation_id=current_conversation) }}"
|
||||||
hx-trigger="revealed"
|
hx-trigger="revealed"
|
||||||
|
|
|
@ -185,7 +185,7 @@
|
||||||
<a href="{{ url_for('post.post_options', post_id=post.id) }}"
|
<a href="{{ url_for('post.post_options', post_id=post.id) }}"
|
||||||
data-bs-toggle="dropdown"
|
data-bs-toggle="dropdown"
|
||||||
rel="nofollow"><span class="fe fe-options" title="Options"></span></a>
|
rel="nofollow"><span class="fe fe-options" title="Options"></span></a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu" style="width: 320px">
|
||||||
<div
|
<div
|
||||||
hx-get="{{ url_for('post.post_options', post_id=post.id) }}"
|
hx-get="{{ url_for('post.post_options', post_id=post.id) }}"
|
||||||
hx-trigger="revealed"
|
hx-trigger="revealed"
|
||||||
|
|
|
@ -102,7 +102,7 @@
|
||||||
aria-label="{{ _('Comment options') }}">
|
aria-label="{{ _('Comment options') }}">
|
||||||
<span class="fe fe-options" title="Options"> </span>
|
<span class="fe fe-options" title="Options"> </span>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu" style="width: 320px">
|
||||||
<div
|
<div
|
||||||
hx-get="{{ url_for('post.post_reply_options', post_id=post_reply.post.id, comment_id=post_reply.id) }}"
|
hx-get="{{ url_for('post.post_reply_options', post_id=post_reply.post.id, comment_id=post_reply.id) }}"
|
||||||
hx-trigger="revealed"
|
hx-trigger="revealed"
|
||||||
|
|
|
@ -1,62 +1,62 @@
|
||||||
{% if current_user.is_authenticated -%}
|
{% if current_user.is_authenticated -%}
|
||||||
{% if post.user_id == current_user.id -%}
|
{% if post.user_id == current_user.id -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_edit', post_id=post.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-edit"></span>
|
<li><a href="{{ url_for('post.post_edit', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-edit"></span>
|
||||||
{{ _('Edit') }}</a></li>
|
{{ _('Edit') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post.user_id == current_user.id or post.community.is_moderator() or post.community.is_owner() or current_user.is_admin() -%}
|
{% if post.user_id == current_user.id or post.community.is_moderator() or post.community.is_owner() or current_user.is_admin() -%}
|
||||||
{% if post.deleted -%}
|
{% if post.deleted -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_restore', post_id=post.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-arrow-up"></span>
|
<li><a href="{{ url_for('post.post_restore', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-arrow-up"></span>
|
||||||
{{ _('Restore') }}</a></li>
|
{{ _('Restore') }}</a></li>
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_purge', post_id=post.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-delete red"></span>
|
<li><a href="{{ url_for('post.post_purge', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-delete red"></span>
|
||||||
{{ _('Purge') }}</a></li>
|
{{ _('Purge') }}</a></li>
|
||||||
{% else -%}
|
{% else -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_delete', post_id=post.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-delete"></span>
|
<li><a href="{{ url_for('post.post_delete', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-delete"></span>
|
||||||
{{ _('Delete') }}</a></li>
|
{{ _('Delete') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if existing_bookmark -%}
|
{% if existing_bookmark -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_remove_bookmark', post_id=post.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
<li><a href="{{ url_for('post.post_remove_bookmark', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
||||||
{{ _('Remove bookmark') }}</a></li>
|
{{ _('Remove bookmark') }}</a></li>
|
||||||
{% else -%}
|
{% else -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_bookmark', post_id=post.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
<li><a href="{{ url_for('post.post_bookmark', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
||||||
{{ _('Bookmark') }}</a></li>
|
{{ _('Bookmark') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post.user_id == current_user.id and not post.mea_culpa -%}
|
{% if post.user_id == current_user.id and not post.mea_culpa -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_mea_culpa', post_id=post.id) }}" class="no-underline"><span class="fe fe-mea-culpa"></span>
|
<li><a href="{{ url_for('post.post_mea_culpa', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline"><span class="fe fe-mea-culpa"></span>
|
||||||
{{ _("I made a mistake with this post and have changed my mind about the topic") }}</a></li>
|
{{ _("I made a mistake with this post and have changed my mind about the topic") }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post.user_id != current_user.id -%}
|
{% if post.user_id != current_user.id -%}
|
||||||
{% if post.type == POST_TYPE_LINK and post.author.bot and (post.cross_posts is none or len(post.cross_posts) == 0) -%}
|
{% if post.type == POST_TYPE_LINK and post.author.bot and (post.cross_posts is none or len(post.cross_posts) == 0) -%}
|
||||||
<li class="dropdown-item"><a class="no-underline" aria-label="{{ _('Cross-post') }}" href="{{ url_for('post.post_cross_post', post_id=post.id) }}"><span class="fe fe-cross-post"></span>
|
<li><a class="dropdown-item no-underline" style="white-space: normal" aria-label="{{ _('Cross-post') }}" href="{{ url_for('post.post_cross_post', post_id=post.id) }}"><span class="fe fe-cross-post"></span>
|
||||||
{{ _('Cross-post to another community') }}</a></li>
|
{{ _('Cross-post to another community') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_block_user', post_id=post.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('post.post_block_user', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _('Block post author @%(author_name)s', author_name=post.author.user_name) }}</a></li>
|
{{ _('Block post author @%(author_name)s', author_name=post.author.user_name) }}</a></li>
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_block_community', post_id=post.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('post.post_block_community', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _('Block community %(community_name)s', community_name=post.community.display_name()) }}</a></li>
|
{{ _('Block community %(community_name)s', community_name=post.community.display_name()) }}</a></li>
|
||||||
{% if post.community.is_moderator() or current_user.is_admin() -%}
|
{% if post.community.is_moderator() or current_user.is_admin() -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('community.community_ban_user', community_id=post.community.id, user_id=post.author.id) }}" class="no-underline"><span class="fe fe-block red"></span>
|
<li><a href="{{ url_for('community.community_ban_user', community_id=post.community.id, user_id=post.author.id) }}" style="white-space: normal" class="dropdown-item no-underline"><span class="fe fe-block red"></span>
|
||||||
{{ _('Ban post author @%(author_name)s from %(community_name)s', author_name=post.author.user_name, community_name=post.community.title) }}</a></li>
|
{{ _('Ban post author @%(author_name)s from %(community_name)s', author_name=post.author.user_name, community_name=post.community.title) }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post.domain_id -%}
|
{% if post.domain_id -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_block_domain', post_id=post.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('post.post_block_domain', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _('Block domain %(domain)s', domain=post.domain.name) }}</a></li>
|
{{ _('Block domain %(domain)s', domain=post.domain.name) }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post.instance_id and post.instance_id != 1 -%}
|
{% if post.instance_id and post.instance_id != 1 -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_block_instance', post_id=post.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('post.post_block_instance', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _("Hide every post from author's instance: %(name)s", name=post.instance.domain) }}</a></li>
|
{{ _("Hide every post from author's instance: %(name)s", name=post.instance.domain) }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post.ap_id -%}
|
{% if post.ap_id -%}
|
||||||
<li class="dropdown-item"><a href="{{ post.ap_id }}" rel="nofollow" class="no-underline"><span class="fe fe-external"></span>
|
<li><a href="{{ post.ap_id }}" style="white-space: normal" rel="nofollow" class="dropdown-item no-underline"><span class="fe fe-external"></span>
|
||||||
{{ _('View original on %(domain)s', domain=post.instance.domain) }}</a></li>
|
{{ _('View original on %(domain)s', domain=post.instance.domain) }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_report', post_id=post.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-report"></span>
|
<li><a href="{{ url_for('post.post_report', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-report"></span>
|
||||||
{{ _('Report to moderators') }}</a></li>
|
{{ _('Report to moderators') }}</a></li>
|
||||||
{% if current_user.is_authenticated and (current_user.is_admin() or current_user.is_staff()) -%}
|
{% if current_user.is_authenticated and (current_user.is_admin() or current_user.is_staff()) -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_view_voting_activity', post_id=post.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-sticky-left"></span>
|
<li><a href="{{ url_for('post.post_view_voting_activity', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-sticky-left"></span>
|
||||||
{{ _('View Voting Activity') }}</a></li>
|
{{ _('View Voting Activity') }}</a></li>
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_fixup_from_remote', post_id=post.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-sticky-right"></span>
|
<li><a href="{{ url_for('post.post_fixup_from_remote', post_id=post.id) }}" style="white-space: normal" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-sticky-right"></span>
|
||||||
{{ _('Fixup from remote') }}</a></li>
|
{{ _('Fixup from remote') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
|
|
@ -1,42 +1,42 @@
|
||||||
{% if current_user.is_authenticated -%}
|
{% if current_user.is_authenticated -%}
|
||||||
{% if post_reply.user_id == current_user.id -%}
|
{% if post_reply.user_id == current_user.id -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_edit', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-edit"></span>
|
<li><a href="{{ url_for('post.post_reply_edit', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-edit"></span>
|
||||||
{{ _('Edit') }}</a></li>
|
{{ _('Edit') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post_reply.user_id == current_user.id or post.community.is_moderator() or post.community.is_owner() or current_user.is_admin() -%}
|
{% if post_reply.user_id == current_user.id or post.community.is_moderator() or post.community.is_owner() or current_user.is_admin() -%}
|
||||||
{% if post_reply.deleted -%}
|
{% if post_reply.deleted -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_restore', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-arrow-up"></span>
|
<li><a href="{{ url_for('post.post_reply_restore', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-arrow-up"></span>
|
||||||
{{ _('Restore') }}</a></li>
|
{{ _('Restore') }}</a></li>
|
||||||
{% if not post_reply.has_replies() -%}
|
{% if not post_reply.has_replies() -%}
|
||||||
{% if post.community.is_moderator() or current_user.is_admin() or (post_reply.user_id == current_user.id and post_reply.deleted_by == post_reply.user_id) -%}
|
{% if post.community.is_moderator() or current_user.is_admin() or (post_reply.user_id == current_user.id and post_reply.deleted_by == post_reply.user_id) -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_purge', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-delete red"></span>
|
<li><a href="{{ url_for('post.post_reply_purge', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-delete red"></span>
|
||||||
{{ _('Purge') }}</a></li>
|
{{ _('Purge') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% else -%}
|
{% else -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_delete', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline confirm_first" rel="nofollow"><span class="fe fe-delete"></span>
|
<li><a href="{{ url_for('post.post_reply_delete', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline confirm_first" rel="nofollow"><span class="fe fe-delete"></span>
|
||||||
{{ _('Delete') }}</a></li>
|
{{ _('Delete') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if existing_bookmark -%}
|
{% if existing_bookmark -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_remove_bookmark', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
<li><a href="{{ url_for('post.post_reply_remove_bookmark', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
||||||
{{ _('Remove bookmark') }}</a></li>
|
{{ _('Remove bookmark') }}</a></li>
|
||||||
{% else -%}
|
{% else -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_bookmark', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
<li><a href="{{ url_for('post.post_reply_bookmark', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-bookmark"></span>
|
||||||
{{ _('Bookmark') }}</a></li>
|
{{ _('Bookmark') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if post_reply.user_id != current_user.id -%}
|
{% if post_reply.user_id != current_user.id -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_block_user', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('post.post_reply_block_user', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _('Block author @%(author_name)s', author_name=post_reply.author.user_name) }}</a></li>
|
{{ _('Block author @%(author_name)s', author_name=post_reply.author.user_name) }}</a></li>
|
||||||
{% if post_reply.instance_id and post_reply.instance_id != 1 -%}
|
{% if post_reply.instance_id and post_reply.instance_id != 1 -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_block_instance', post_id=post.id, comment_id=post_reply.id) }}" class="no-underline"><span class="fe fe-block"></span>
|
<li><a href="{{ url_for('post.post_reply_block_instance', post_id=post.id, comment_id=post_reply.id) }}" class="dropdown-item no-underline"><span class="fe fe-block"></span>
|
||||||
{{ _("Hide every post from author's instance: %(name)s", name=post_reply.instance.domain) }}</a></li>
|
{{ _("Hide every post from author's instance: %(name)s", name=post_reply.instance.domain) }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if current_user.is_authenticated and (current_user.is_admin() or current_user.is_staff()) -%}
|
{% if current_user.is_authenticated and (current_user.is_admin() or current_user.is_staff()) -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_view_voting_activity', comment_id=post_reply.id) }}" class="no-underline" rel="nofollow"><span class="fe fe-sticky-left"></span>
|
<li><a href="{{ url_for('post.post_reply_view_voting_activity', comment_id=post_reply.id) }}" class="dropdown-item no-underline" rel="nofollow"><span class="fe fe-sticky-left"></span>
|
||||||
{{ _('View Voting Activity') }}</a></li>
|
{{ _('View Voting Activity') }}</a></li>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
<li class="dropdown-item"><a href="{{ url_for('post.post_reply_report', post_id=post.id, comment_id=post_reply.id) }}" rel="nofollow" class="no-underline"><span class="fe fe-report"></span>
|
<li><a href="{{ url_for('post.post_reply_report', post_id=post.id, comment_id=post_reply.id) }}" rel="nofollow" class="dropdown-item no-underline"><span class="fe fe-report"></span>
|
||||||
{{ _('Report to moderators') }}</a></li>
|
{{ _('Report to moderators') }}</a></li>
|
||||||
|
|
|
@ -20,6 +20,18 @@
|
||||||
</div>
|
</div>
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
<div class="post_options_link">
|
<div class="post_options_link">
|
||||||
<a href="{{ url_for('post.post_options', post_id=post.id) }}" rel="nofollow" aria-label="{{ _('Options') }}"><span class="fe fe-options" title="Options"> </span></a>
|
<div class="dropdown">
|
||||||
</div>
|
<a href="{{ url_for('post.post_options', post_id=post.id) }}"
|
||||||
|
data-bs-toggle="dropdown"
|
||||||
|
rel="nofollow"><span class="fe fe-options" title="Options"></span></a>
|
||||||
|
<ul class="dropdown-menu" style="width: 320px">
|
||||||
|
<div
|
||||||
|
hx-get="{{ url_for('post.post_options', post_id=post.id) }}"
|
||||||
|
hx-trigger="revealed"
|
||||||
|
hx-target="this"
|
||||||
|
hx-swap="outerHTML"
|
||||||
|
></div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue