2022-06-22 13:11:22 -05:00
{% macro embed_csrf_token() %}
< input type = "hidden" name = "csrf_token" value = "{{ csrf_token }}" >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro embed_redirect_url(permalink_id=None) %}
< input type = "hidden" name = "redirect_url" value = "{{ request.url }}{% if permalink_id %}#{{ permalink_id }}{% endif %}" >
2022-06-22 13:11:22 -05:00
{% endmacro %}
2022-07-31 03:35:11 -05:00
{% macro admin_block_button(actor) %}
< form action = "{{ request.url_for(" admin_actions_block " ) } } " method = "POST" >
{{ embed_csrf_token() }}
{{ embed_redirect_url() }}
< input type = "hidden" name = "ap_actor_id" value = "{{ actor.ap_id }}" >
< input type = "submit" value = "block" >
< / form >
{% endmacro %}
{% macro admin_unblock_button(actor) %}
< form action = "{{ request.url_for(" admin_actions_unblock " ) } } " method = "POST" >
{{ embed_csrf_token() }}
{{ embed_redirect_url() }}
< input type = "hidden" name = "ap_actor_id" value = "{{ actor.ap_id }}" >
< input type = "submit" value = "unblock" >
< / form >
{% endmacro %}
2022-06-22 13:11:22 -05:00
{% macro admin_follow_button(actor) %}
< form action = "{{ request.url_for(" admin_actions_follow " ) } } " method = "POST" >
{{ embed_csrf_token() }}
{{ embed_redirect_url() }}
< input type = "hidden" name = "ap_actor_id" value = "{{ actor.ap_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "follow" >
2022-06-22 13:11:22 -05:00
< / form >
{% endmacro %}
2022-08-02 13:14:40 -05:00
{% macro admin_accept_incoming_follow_button(notif) %}
< form action = "{{ request.url_for(" admin_actions_accept_incoming_follow " ) } } " method = "POST" >
{{ embed_csrf_token() }}
{{ embed_redirect_url() }}
< input type = "hidden" name = "notification_id" value = "{{ notif.id }}" >
< input type = "submit" value = "accept follow" >
< / form >
{% endmacro %}
{% macro admin_reject_incoming_follow_button(notif) %}
< form action = "{{ request.url_for(" admin_actions_reject_incoming_follow " ) } } " method = "POST" >
{{ embed_csrf_token() }}
{{ embed_redirect_url() }}
< input type = "hidden" name = "notification_id" value = "{{ notif.id }}" >
< input type = "submit" value = "reject follow" >
< / form >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro admin_like_button(ap_object_id, permalink_id) %}
2022-06-22 13:11:22 -05:00
< form action = "{{ request.url_for(" admin_actions_like " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-22 13:11:22 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "like" >
2022-06-22 13:11:22 -05:00
< / form >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro admin_bookmark_button(ap_object_id, permalink_id) %}
2022-06-26 04:09:43 -05:00
< form action = "{{ request.url_for(" admin_actions_bookmark " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-26 04:09:43 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "bookmark" >
2022-06-26 04:09:43 -05:00
< / form >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro admin_unbookmark_button(ap_object_id, permalink_id) %}
2022-06-26 04:09:43 -05:00
< form action = "{{ request.url_for(" admin_actions_unbookmark " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-26 04:09:43 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "unbookmark" >
2022-06-26 04:09:43 -05:00
< / form >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro admin_pin_button(ap_object_id, permalink_id) %}
2022-06-26 11:07:55 -05:00
< form action = "{{ request.url_for(" admin_actions_pin " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-26 11:07:55 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "pin" >
2022-06-26 11:07:55 -05:00
< / form >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro admin_unpin_button(ap_object_id, permalink_id) %}
2022-06-26 11:07:55 -05:00
< form action = "{{ request.url_for(" admin_actions_unpin " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-26 11:07:55 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "unpin" >
2022-06-26 11:07:55 -05:00
< / form >
{% endmacro %}
2022-07-02 03:33:20 -05:00
{% macro admin_delete_button(ap_object_id) %}
< form action = "{{ request.url_for(" admin_actions_delete " ) } } " method = "POST" onsubmit = "return confirm('Do you really want to delete this object?');" >
{{ embed_csrf_token() }}
{{ embed_redirect_url() }}
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< input type = "submit" value = "delete" >
2022-07-02 03:33:20 -05:00
< / form >
{% endmacro %}
2022-08-12 03:01:35 -05:00
{% macro admin_announce_button(ap_object_id, permalink_id=None) %}
2022-06-22 13:11:22 -05:00
< form action = "{{ request.url_for(" admin_actions_announce " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-22 13:11:22 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
2022-08-12 03:01:35 -05:00
< input type = "submit" value = "share" >
2022-06-22 13:11:22 -05:00
< / form >
{% endmacro %}
2022-07-15 13:01:55 -05:00
{% macro admin_undo_button(ap_object_id, action="undo", permalink_id=None) %}
2022-06-22 13:11:22 -05:00
< form action = "{{ request.url_for(" admin_actions_undo " ) } } " method = "POST" >
{{ embed_csrf_token() }}
2022-07-15 13:01:55 -05:00
{{ embed_redirect_url(permalink_id) }}
2022-06-22 13:11:22 -05:00
< input type = "hidden" name = "ap_object_id" value = "{{ ap_object_id }}" >
< input type = "submit" value = "{{ action }}" >
< / form >
{% endmacro %}
2022-06-24 04:33:05 -05:00
{% macro admin_reply_button(ap_object_id) %}
< form action = "/admin/new" method = "GET" >
< input type = "hidden" name = "in_reply_to" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< button type = "submit" > reply< / button >
2022-06-24 04:33:05 -05:00
< / form >
{% endmacro %}
2022-08-11 13:48:20 -05:00
{% macro admin_dm_button(actor_handle) %}
< form action = "/admin/new" method = "GET" >
< input type = "hidden" name = "with_content" value = "{{ actor_handle }}" >
< input type = "hidden" name = "with_visibility" value = "DIRECT" >
< button type = "submit" > direct message< / button >
< / form >
{% endmacro %}
{% macro admin_mention_button(actor_handle) %}
< form action = "/admin/new" method = "GET" >
< input type = "hidden" name = "with_content" value = "{{ actor_handle }}" >
< button type = "submit" > mention< / button >
< / form >
{% endmacro %}
2022-06-25 05:19:12 -05:00
{% macro admin_profile_button(ap_actor_id) %}
< form action = "{{ url_for(" admin_profile " ) } } " method = "GET" >
< input type = "hidden" name = "actor_id" value = "{{ ap_actor_id }}" >
2022-07-03 15:01:47 -05:00
< button type = "submit" > profile< / button >
2022-06-25 05:19:12 -05:00
< / form >
{% endmacro %}
2022-06-25 05:29:35 -05:00
{% macro admin_expand_button(ap_object_id) %}
< form action = "{{ url_for(" admin_object " ) } } " method = "GET" >
< input type = "hidden" name = "ap_id" value = "{{ ap_object_id }}" >
2022-07-03 15:01:47 -05:00
< button type = "submit" > expand< / button >
2022-06-25 05:29:35 -05:00
< / form >
{% endmacro %}
2022-06-28 13:10:25 -05:00
{% macro display_box_filters(route) %}
2022-07-09 01:15:33 -05:00
< nav class = "flexbox box" >
2022-07-03 15:01:47 -05:00
< ul >
< li > Filter by< / li >
2022-07-25 14:48:40 -05:00
{% for ap_type in ["Note", "Article", "Page", "Question", "Like", "Announce", "Follow"] %}
2022-07-03 15:01:47 -05:00
< li > < a href = "{{ url_for(route) }}?filter_by={{ ap_type }}" { % if request . query_params . filter_by = = ap_type % } class = "active" { % endif % } >
{{ ap_type }}
< / a >
< / li >
{% endfor %}
{% if request.query_params.filter_by %}
< li >
< a href = "{{ url_for(route) }}" > Reset filter< / a >
< / li >
{% endif %}
2022-07-09 01:15:33 -05:00
< / ul >
2022-07-03 15:01:47 -05:00
< / nav >
2022-06-28 13:10:25 -05:00
{% endmacro %}
2022-08-26 00:43:39 -05:00
{% macro display_tiny_actor_icon(actor) %}
< img class = "tiny-actor-icon" src = "{{ actor.resized_icon_url }}" alt = "{{ actor.display_name }}'s avatar" >
{% endmacro %}
2022-07-27 11:56:14 -05:00
{% macro actor_action(inbox_object, text) %}
< div class = "actor-action" >
2022-08-26 00:43:39 -05:00
< a href = "{{ url_for(" admin_profile " ) } } ? actor_id = {{ inbox_object . actor . ap_id } } " >
{{ display_tiny_actor_icon(inbox_object.actor) }} {{ inbox_object.actor.display_name | clean_html(inbox_object.actor) | safe }}
< / a > {{ text }}
2022-07-31 08:00:06 -05:00
< span title = "{{ inbox_object.ap_published_at.isoformat() }}" > {{ inbox_object.ap_published_at | timeago }}< / span >
2022-07-27 11:56:14 -05:00
< / div >
{% endmacro %}
2022-08-02 13:14:40 -05:00
{% macro display_actor(actor, actors_metadata={}, embedded=False, with_details=False, pending_incoming_follow_notif=None) %}
2022-06-22 13:11:22 -05:00
{% set metadata = actors_metadata.get(actor.ap_id) %}
2022-07-09 01:15:33 -05:00
{% if not embedded %}
< div class = "ap-object" >
{% endif %}
2022-07-01 12:35:34 -05:00
< div class = "actor-box h-card p-author" >
< div class = "icon-box" >
2022-07-16 00:48:24 -05:00
< img src = "{{ actor.resized_icon_url }}" alt = "{{ actor.display_name }}'s avatar" class = "actor-icon u-photo" >
2022-06-22 13:11:22 -05:00
< / div >
2022-06-26 14:54:07 -05:00
< a href = "{{ actor.url }}" class = "u-url" style = "" >
2022-06-26 11:07:55 -05:00
< div > < strong > {{ actor.display_name | clean_html(actor) | safe }}< / strong > < / div >
2022-07-01 12:35:34 -05:00
< div class = "actor-handle p-name" > {{ actor.handle }}< / div >
2022-06-22 13:11:22 -05:00
< / a >
< / div >
2022-07-27 12:36:55 -05:00
2022-06-25 03:20:07 -05:00
{% if is_admin and metadata %}
2022-06-22 13:11:22 -05:00
< div >
2022-07-03 15:01:47 -05:00
< nav class = "flexbox actor-metadata" >
2022-07-09 01:15:33 -05:00
< ul >
2022-06-25 03:20:07 -05:00
{% if metadata.is_following %}
< li > already following< / li >
2022-07-03 15:01:47 -05:00
< li > {{ admin_undo_button(metadata.outbox_follow_ap_id, "unfollow")}}< / li >
2022-07-08 02:01:25 -05:00
< li > {{ admin_profile_button(actor.ap_id) }}< / li >
2022-06-25 03:20:07 -05:00
{% elif metadata.is_follow_request_sent %}
< li > follow request sent< / li >
2022-07-17 02:45:00 -05:00
< li > {{ admin_undo_button(metadata.outbox_follow_ap_id, "undo follow") }}< / li >
2022-06-22 13:11:22 -05:00
{% else %}
2022-06-25 03:20:07 -05:00
< li > {{ admin_follow_button(actor) }}< / li >
2022-06-22 13:11:22 -05:00
{% endif %}
2022-06-25 03:20:07 -05:00
{% if metadata.is_follower %}
< li > follows you< / li >
2022-08-11 13:48:20 -05:00
{% if not metadata.is_following and not with_details %}
2022-07-09 01:15:33 -05:00
< li > {{ admin_profile_button(actor.ap_id) }}< / li >
2022-07-08 02:01:25 -05:00
{% endif %}
2022-07-09 01:15:33 -05:00
< / li >
2022-06-22 13:11:22 -05:00
{% endif %}
2022-07-31 03:35:11 -05:00
{% if actor.is_from_db %}
{% if actor.is_blocked %}
< li > blocked< / li >
< li > {{ admin_unblock_button(actor) }}< / li >
{% else %}
< li > {{ admin_block_button(actor) }}< / li >
{% endif %}
{% endif %}
2022-08-11 13:48:20 -05:00
< li > {{ admin_dm_button(actor.handle) }}< / li >
< li > {{ admin_mention_button(actor.handle) }}< / li >
2022-08-02 13:14:40 -05:00
{% if pending_incoming_follow_notif %}
{% if not pending_incoming_follow_notif.is_accepted and not pending_incoming_follow_notif.is_rejected %}
< li >
{{ admin_accept_incoming_follow_button(pending_incoming_follow_notif) }}
< / li >
< li >
{{ admin_reject_incoming_follow_button(pending_incoming_follow_notif) }}
< / li >
{% elif pending_incoming_follow_notif.is_accepted %}
< li > accepted< / li >
{% else %}
< li > rejected< / li >
{% endif %}
{% endif %}
2022-07-09 01:15:33 -05:00
< / ul >
2022-06-22 13:11:22 -05:00
< / nav >
< / div >
{% endif %}
2022-07-31 03:03:45 -05:00
{% if with_details %}
{% if actor.summary %}
< div class = "p-note" >
{{ actor.summary | clean_html(actor) | safe }}
< / div >
{% endif %}
{% if actor.attachments %}
< div id = "profile-props" >
2022-08-10 01:58:18 -05:00
{% for prop in actor.attachments %}
< dl >
2022-07-31 03:03:45 -05:00
{% if prop.type == "PropertyValue" %}
2022-08-10 01:58:18 -05:00
< dt class = "muted" title = "{{ prop.name }}" > {{ prop.name }}< / dt >
< dd > {{ prop.value | clean_html(actor) | safe }}< / dd >
2022-07-31 03:03:45 -05:00
{% endif %}
2022-08-10 01:58:18 -05:00
< / dl >
{% endfor %}
2022-07-31 03:03:45 -05:00
< / div >
{% endif %}
{% endif %}
2022-07-09 01:15:33 -05:00
{% if not embedded %}
< / div >
{% endif %}
2022-06-22 13:11:22 -05:00
{% endmacro %}
2022-06-29 14:38:13 -05:00
{% macro display_og_meta(object) %}
{% if object.og_meta %}
{% for og_meta in object.og_meta %}
2022-07-01 12:35:34 -05:00
< div class = "activity-og-meta" style = "display:flex;column-gap: 20px;margin:20px 0;" >
2022-06-29 14:38:13 -05:00
{% if og_meta.image %}
< div >
2022-07-31 03:35:11 -05:00
< img src = "{{ og_meta.image | media_proxy_url }}" style = "max-width:200px;max-height:100px;" >
2022-06-29 14:38:13 -05:00
< / div >
2022-08-02 15:22:15 -05:00
{% endif %}
2022-06-29 14:38:13 -05:00
< div >
2022-08-04 12:11:14 -05:00
< a href = "{{ og_meta.url | privacy_replace_url }}" > {{ og_meta.title }}< / a >
2022-07-31 08:27:12 -05:00
{% if og_meta.site_name %}
< small style = "display:block;" > {{ og_meta.site_name }}< / small >
{% endif %}
2022-06-29 14:38:13 -05:00
< / div >
< / div >
{% endfor %}
{% endif %}
{% endmacro %}
2022-06-28 14:10:22 -05:00
{% macro display_attachments(object) %}
{% for attachment in object.attachments %}
2022-08-13 08:20:56 -05:00
{% if object.sensitive and (attachment.type == "Image" or (attachment | has_media_type("image")) or attachment.type == "Video" or (attachment | has_media_type("video"))) %}
< div >
< label for = "{{attachment.proxied_url}}" class = "label-btn" style = "display:inline-block;" > show/hide sensitive content< / label >
< div >
< div class = "sensitive-attachment" >
< input class = "sensitive-attachment-state" type = "checkbox" id = "{{attachment.proxied_url}}" aria-hidden = "true" >
< div class = "sensitive-attachment-box" >
< div > < / div >
{% else %}
< div style = "margin-top:20px;" >
{% endif %}
2022-06-28 14:10:22 -05:00
{% if attachment.type == "Image" or (attachment | has_media_type("image")) %}
2022-08-03 12:54:11 -05:00
{% if attachment.url not in object.inlined_images %}
2022-08-13 08:20:56 -05:00
< img src = "{{ attachment.resized_url or attachment.proxied_url }}" { % if attachment . name % } title = "{{ attachment.name }}" alt = "{{ attachment.name }}" { % endif % } class = "attachment" style = "margin:0;" >
2022-08-03 12:54:11 -05:00
{% endif %}
2022-06-28 14:10:22 -05:00
{% elif attachment.type == "Video" or (attachment | has_media_type("video")) %}
2022-08-13 08:20:56 -05:00
< video controls preload = "metadata" src = "{{ attachment.url | media_proxy_url }}" { % if attachment . name % } title = "{{ attachment.name }}" { % endif % } > < / video >
2022-06-28 14:10:22 -05:00
{% elif attachment.type == "Audio" or (attachment | has_media_type("audio")) %}
< audio controls preload = "metadata" src = "{{ attachment.url | media_proxy_url }}" { % if attachment . name % } title = "{{ attachment.name }}" { % endif % } style = "width:480px;" class = "attachment" > < / audio >
2022-07-20 13:59:29 -05:00
{% elif attachment.type == "Link" %}
< a href = "{{ attachment.url }}" class = "attachment" style = "display:inline-block;margin-bottom: 15px;" > {{ attachment.url }}< / a >
2022-06-28 14:10:22 -05:00
{% else %}
< a href = "{{ attachment.url | media_proxy_url }}" { % if attachment . name % } title = "{{ attachment.name }}" { % endif % } class = "attachment" > {{ attachment.url }}< / a >
{% endif %}
2022-08-13 08:20:56 -05:00
{% if object.sensitive %}
< / div >
< / div >
< / div >
< / div >
{% else %}
< / div >
{% endif %}
2022-06-28 14:10:22 -05:00
{% endfor %}
{% endmacro %}
2022-07-25 15:51:53 -05:00
{% macro display_object(object, likes=[], shares=[], webmentions=[], expanded=False, actors_metadata={}, is_object_page=False) %}
{% set is_article_mode = object.is_from_outbox and object.ap_type == "Article" and is_object_page %}
2022-07-22 11:55:24 -05:00
{% if object.ap_type in ["Note", "Article", "Video", "Page", "Question"] %}
2022-07-09 01:15:33 -05:00
< div class = "ap-object {% if expanded %}ap-object-expanded {% endif %}h-entry" id = "{{ object.permalink_id }}" >
2022-07-25 15:51:53 -05:00
{% if is_article_mode %}
< data class = "h-card" >
< data class = "u-photo" value = "{{ local_actor.icon_url }}" > < / data >
< data class = "u-url" value = "{{ local_actor.url}}" > < / data >
< data class = "p-name" value = "{{ local_actor.handle }}" > < / data >
< / data >
{% else %}
2022-07-14 12:05:45 -05:00
{{ display_actor(object.actor, actors_metadata, embedded=True) }}
2022-07-25 15:51:53 -05:00
{% endif %}
2022-07-09 01:15:33 -05:00
{% if object.in_reply_to %}
< a href = "{% if is_admin %}{{ url_for(" get_lookup " ) } } ? query = {% endif % } { { object . in_reply_to } } " title = "{{ object.in_reply_to }}" class = "in-reply-to" rel = "nofollow" >
in reply to {{ object.in_reply_to|truncate(64, True) }}
< / a >
2022-07-07 14:18:20 -05:00
{% endif %}
2022-06-29 15:20:15 -05:00
2022-07-25 15:51:53 -05:00
{% if object.ap_type == "Article" %}
< h2 class = "p-name" style = "margin-top:0;" > {{ object.name }}< / h2 >
{% endif %}
{% if is_article_mode %}
< time class = "dt-published muted" datetime = "{{ object.ap_published_at.replace(microsecond=0).isoformat() }}" title = "{{ object.ap_published_at.replace(microsecond=0).isoformat() }}" > {{ object.ap_published_at.strftime("%b %d, %Y") }}< / time >
{% endif %}
2022-07-09 01:15:33 -05:00
{% if object.summary %}
2022-08-13 08:20:56 -05:00
< div class = "show-more-wrapper" >
< div class = "p-summary" >
< p > {{ object.summary | clean_html(object) | safe }}< / p >
< / div >
< label for = "show-more-{{ object.permalink_id }}" class = "show-more-btn" > show/hide more< / label >
< input class = "show-more-state" type = "checkbox" aria-hidden = "true" id = "show-more-{{ object.permalink_id }}" checked >
2022-07-09 01:15:33 -05:00
{% endif %}
2022-08-13 08:20:56 -05:00
< div class = "obj-content" >
2022-07-09 01:15:33 -05:00
< div class = "e-content" >
{{ object.content | clean_html(object) | safe }}
< / div >
2022-08-13 08:20:56 -05:00
{% if object.ap_type == "Question" %}
2022-07-23 16:09:28 -05:00
{% set can_vote = is_admin and object.is_from_inbox and not object.is_poll_ended and not object.voted_for_answers %}
{% if can_vote %}
2022-07-23 12:02:06 -05:00
< form action = "{{ request.url_for(" admin_actions_vote " ) } } " method = "POST" >
{{ embed_csrf_token() }}
{{ embed_redirect_url(object.permalink_id) }}
< input type = "hidden" name = "in_reply_to" value = "{{ object.ap_id }}" >
{% endif %}
2022-07-22 11:55:24 -05:00
2022-07-23 16:06:30 -05:00
{% if object.poll_items %}
2022-07-22 11:55:24 -05:00
< ul style = "list-style-type: none;padding:0;" >
2022-07-23 16:06:30 -05:00
{% for item in object.poll_items %}
2022-07-22 11:55:24 -05:00
< li style = "display:block;" >
2022-07-31 11:40:52 -05:00
{% set pct = item | poll_item_pct(object.poll_voters_count) %}
2022-07-23 12:02:06 -05:00
< p style = "margin:20px 0 10px 0;" >
2022-07-23 16:06:30 -05:00
{% if can_vote %}
< input type = "{% if object.is_one_of_poll %}radio{% else %}checkbox{% endif %}" name = "name" value = "{{ item.name }}" id = "{{object.permalink_id}}-{{item.name}}" >
< label for = "{{object.permalink_id}}-{{item.name}}" >
2022-07-23 12:02:06 -05:00
{% endif %}
2022-07-23 16:06:30 -05:00
{{ item.name | clean_html(object) | safe }}
{% if object.voted_for_answers and item.name in object.voted_for_answers %}
< span class = "muted" style = "padding-left:20px;" > you voted for this answer< / span >
{% endif %}
{% if can_vote %}
< / label >
{% endif %}
< span style = "float:right;" > {{ pct }}% < span class = "muted" > ({{ item.replies.totalItems }} votes)< / span > < / span >
2022-07-23 12:02:06 -05:00
< / p >
2022-07-22 11:55:24 -05:00
< svg class = "poll-bar" >
2022-07-23 12:02:06 -05:00
< line x1 = "0" y1 = "10px" x2 = "{{ pct or 1 }}%" y2 = "10px" style = "stroke-width: 20px;" > < / line >
2022-07-22 11:55:24 -05:00
< / svg >
< / li >
{% endfor %}
< / ul >
{% endif %}
2022-07-23 16:06:30 -05:00
{% if can_vote %}
2022-07-23 12:02:06 -05:00
< p class = "form" >
< input type = "submit" value = "vote" >
< / p >
< / form >
{% endif %}
2022-08-13 08:20:56 -05:00
{{ display_og_meta(object) }}
2022-07-23 12:02:06 -05:00
2022-07-22 11:55:24 -05:00
{% endif %}
2022-08-13 08:20:56 -05:00
< / div >
{% if object.summary %}
< / div >
{% endif %}
2022-07-09 01:15:33 -05:00
2022-08-13 08:20:56 -05:00
< div class = "activity-attachment" style = "margin-bottom:20px;" >
2022-07-09 01:15:33 -05:00
{{ display_attachments(object) }}
2022-06-29 15:20:15 -05:00
< / div >
2022-07-09 01:15:33 -05:00
< nav class = "flexbox activity-bar" >
< ul >
< li >
2022-07-19 13:54:10 -05:00
< div > < a href = "{{ object.url }}" { % if object . is_from_inbox % } rel = "nofollow" { % endif % } class = "object-permalink u-url u-uid" > permalink< / a > < / div >
2022-07-14 11:40:38 -05:00
< / li >
2022-07-25 15:51:53 -05:00
{% if not is_article_mode %}
< li >
< time class = "dt-published" datetime = "{{ object.ap_published_at.replace(microsecond=0).isoformat() }}" title = "{{ object.ap_published_at.replace(microsecond=0).isoformat() }}" > {{ object.ap_published_at | timeago }}< / time >
< / li >
{% endif %}
2022-07-22 11:55:24 -05:00
{% if object.ap_type == "Question" %}
2022-07-31 11:40:52 -05:00
{% if object.poll_end_time %}
< li >
{% if object.is_poll_ended %}ended{% else %}ends{% endif %}
< time title = "{{ object.poll_end_time.replace(microsecond=0).isoformat() }}" >
{{ object.poll_end_time | timeago }}
< / time >
< / li >
{% endif %}
2022-07-23 16:06:30 -05:00
< li >
2022-07-31 11:40:52 -05:00
{{ object.poll_voters_count }} voters
2022-07-23 16:06:30 -05:00
< / li >
2022-07-22 11:55:24 -05:00
{% endif %}
2022-07-09 01:15:33 -05:00
{% if is_admin %}
< li >
{{ object.visibility.value }}
< / li >
{% endif %}
{% if object.is_from_outbox %}
{% if object.likes_count %}
< li >
< a href = "{{ object.url }}" > < strong > {{ object.likes_count }}< / strong > like{{ object.likes_count | pluralize }}< / a >
< / li >
{% endif %}
{% if object.announces_count %}
< li >
< a href = "{{ object.url }}" > < strong > {{ object.announces_count }}< / strong > share{{ object.announces_count | pluralize }}< / a >
< / li >
{% endif %}
2022-07-10 14:30:50 -05:00
2022-07-14 09:29:17 -05:00
{% if object.webmentions_count %}
2022-07-10 14:30:50 -05:00
< li >
2022-07-14 09:29:17 -05:00
< a href = "{{ object.url }}" > < strong > {{ object.webmentions_count }}< / strong > webmention{{ object.webmentions_count | pluralize }}< / a >
2022-07-10 14:30:50 -05:00
< / li >
{% endif %}
2022-07-09 01:15:33 -05:00
{% endif %}
{% if (object.is_from_outbox or is_admin) and object.replies_count %}
< li >
2022-07-09 01:38:01 -05:00
< a href = "{% if is_admin and not object.is_from_outbox %}{{ url_for(" admin_object " ) } } ? ap_id = {{ object . ap_id } } { % else % } { { object . url } } { % endif % } " > < strong > {{ object.replies_count }}< / strong > repl{{ object.replies_count | pluralize("y", "ies") }}< / a >
2022-07-09 01:15:33 -05:00
< / li >
{% endif %}
< / ul >
< / nav >
2022-08-15 05:49:07 -05:00
{% if is_admin %}
2022-07-09 01:15:33 -05:00
< nav class = "flexbox activity-bar" >
< ul >
{% if object.is_from_outbox %}
< li >
{{ admin_delete_button(object.ap_id) }}
< / li >
< li >
{% if object.is_pinned %}
2022-07-15 13:01:55 -05:00
{{ admin_unpin_button(object.ap_id, object.permalink_id) }}
2022-07-09 01:15:33 -05:00
{% else %}
2022-07-15 13:01:55 -05:00
{{ admin_pin_button(object.ap_id, object.permalink) }}
2022-07-09 01:15:33 -05:00
{% endif %}
< / li >
{% endif %}
< li >
{{ admin_reply_button(object.ap_id) }}
< / li >
2022-08-15 05:49:07 -05:00
{% if not object.is_from_outbox %}
2022-07-30 01:31:27 -05:00
< li >
{% if object.liked_via_outbox_object_ap_id %}
{{ admin_undo_button(object.liked_via_outbox_object_ap_id, "unlike", object.permalink_id) }}
{% else %}
{{ admin_like_button(object.ap_id, object.permalink_id) }}
{% endif %}
< / li >
2022-07-09 01:15:33 -05:00
2022-07-30 01:31:27 -05:00
< li >
{% if object.is_bookmarked %}
{{ admin_unbookmark_button(object.ap_id, object.permalink_id) }}
{% else %}
{{ admin_bookmark_button(object.ap_id, object.permalink_id) }}
{% endif %}
< / li >
2022-07-09 01:15:33 -05:00
2022-08-12 03:01:35 -05:00
{% if object.visibility in [visibility_enum.PUBLIC, visibility_enum.UNLISTED] %}
2022-07-30 01:31:27 -05:00
< li >
{% if object.announced_via_outbox_object_ap_id %}
{{ admin_undo_button(object.liked_via_outbox_object_ap_id, "unshare") }}
{% else %}
2022-08-12 03:01:35 -05:00
{{ admin_announce_button(object.ap_id, permalink_id=object.permalink_id) }}
2022-07-30 01:31:27 -05:00
{% endif %}
< / li >
2022-08-12 03:01:35 -05:00
{% endif %}
2022-07-09 01:15:33 -05:00
2022-08-15 05:49:07 -05:00
{% if object.is_from_inbox %}
< li >
{{ admin_profile_button(object.actor.ap_id) }}
< / li >
{% endif %}
{% endif %}
{% if object.is_from_inbox or object.is_from_outbox %}
2022-07-30 01:31:27 -05:00
< li >
2022-08-15 05:49:07 -05:00
{{ admin_expand_button(object.ap_id) }}
2022-07-30 01:31:27 -05:00
< / li >
{% endif %}
2022-07-09 01:15:33 -05:00
< / ul >
< / nav >
{% endif %}
2022-07-10 14:30:50 -05:00
{% if likes or shares or webmentions %}
< div style = "display: flex;column-gap: 20px;flex-wrap: wrap;margin-top:20px;" >
2022-07-09 01:15:33 -05:00
{% if likes %}
2022-07-10 14:30:50 -05:00
< div style = "flex: 0 1 30%;max-width: 50%;" > Likes
2022-07-09 01:15:33 -05:00
< div style = "display: flex;column-gap: 20px;row-gap:20px;flex-wrap: wrap;margin-top:20px;" >
{% for like in likes %}
< a href = "{% if is_admin %}{{ url_for(" admin_profile " ) } } ? actor_id = {{ like . actor . ap_id } } { % else % } { { like . actor . url } } { % endif % } " title = "{{ like.actor.handle }}" style = "height:50px;" rel = "noreferrer" >
< img src = "{{ like.actor.resized_icon_url }}" alt = "{{ like.actor.handle}}" style = "max-width:50px;" >
< / a >
{% endfor %}
2022-08-18 13:53:51 -05:00
{% if object.likes_count > likes | length %}
< div style = "display:inline-block;align-self:center;" >
and {{ object.likes_count - likes | length }} more.
< / div >
{% endif %}
2022-07-09 01:15:33 -05:00
< / div >
< / div >
{% endif %}
{% if shares %}
2022-07-10 14:30:50 -05:00
< div style = "flex: 0 1 30%;max-width: 50%;" > Shares
2022-07-09 01:15:33 -05:00
< div style = "display: flex;column-gap: 20px;row-gap:20px;flex-wrap: wrap;margin-top:20px;" >
{% for share in shares %}
< a href = "{% if is_admin %}{{ url_for(" admin_profile " ) } } ? actor_id = {{ share . actor . ap_id } } { % else % } { { share . actor . url } } { % endif % } " title = "{{ share.actor.handle }}" style = "height:50px;" rel = "noreferrer" >
< img src = "{{ share.actor.resized_icon_url }}" alt = "{{ share.actor.handle}}" style = "max-width:50px;" >
< / a >
{% endfor %}
2022-08-18 13:53:51 -05:00
{% if object.announces_count > shares | length %}
< div style = "display:inline-block;align-self:center;" >
and {{ object.announces_count - shares | length }} more.
< / div >
{% endif %}
2022-07-09 01:15:33 -05:00
< / div >
< / div >
{% endif %}
2022-07-10 14:30:50 -05:00
{% if webmentions %}
< div style = "flex: 0 1 30%;max-width: 50%;" > Webmentions
< div style = "display: flex;column-gap: 20px;row-gap:20px;flex-wrap: wrap;margin-top:20px;" >
{% for webmention in webmentions %}
2022-07-14 09:29:17 -05:00
{% set wm = webmention.as_facepile_item %}
{% if wm %}
< a href = "{{ wm.url }}" title = "{{ wm.actor_name }}" style = "height:50px;" rel = "noreferrer" >
< img src = "{{ wm.actor_icon_url | media_proxy_url }}" alt = "{{ wm.actor_name }}" style = "max-width:50px;" >
< / a >
{% endif %}
2022-07-10 14:30:50 -05:00
{% endfor %}
< / div >
< / div >
{% endif %}
2022-06-29 15:20:15 -05:00
< / div >
2022-07-07 14:18:20 -05:00
{% endif %}
2022-06-29 15:20:15 -05:00
2022-07-09 01:15:33 -05:00
< / div >
{% endif %}
2022-06-25 03:20:07 -05:00
{% endmacro %}