pyfedi/app/templates/topic/_notification_toggle.html

5 lines
510 B
HTML
Raw Permalink Normal View History

2024-04-28 21:03:00 -07:00
<a href="/topic/{{ topic.id }}/notification" rel="nofollow" aria-live="assertive"
aria-label="{{ 'Notify about new posts in this topic' if topic.notify_new_posts(current_user.id) else 'Do not notify about new posts' }}"
class="fe {{ 'fe-bell' if topic.notify_new_posts(current_user.id) else 'fe-no-bell' }} no-underline"
hx-post="/topic/{{ topic.id }}/notification" hx-trigger="click throttle:1s" hx-swap="outerHTML"
title="{{ _('Notify about every new post. Not advisable in high traffic topics!') }}"></a>