pyfedi/app/templates/post/_post_notification_toggle.html

5 lines
575 B
HTML
Raw Normal View History

<a href="{{ url_for('post.post_notification', post_id=post.id) }}" rel="nofollow" aria-live="assertive"
aria-label="{{ 'Notify about replies to this post.' if post.notify_new_replies(current_user.id) else 'Do not notify about new replies to this post.' }}"
class="small fe {{ 'fe-bell' if post.notify_new_replies(current_user.id) else 'fe-no-bell' }} no-underline"
2024-01-09 12:34:58 -08:00
hx-post="{{ url_for('post.post_notification', post_id=post.id) }}" hx-trigger="click throttle:1s" hx-swap="outerHTML"
2024-01-19 01:49:16 -08:00
title="{{ _('Notify about replies') }}" aria-label="{{ _('Notify about replies') }}"></a>