moviewyrm/bookwyrm/templatetags/notification_page_tags.py
2022-01-18 12:28:59 -08:00

15 lines
379 B
Python

""" tags used on the feed pages """
from django import template
from bookwyrm.templatetags.feed_page_tags import load_subclass
register = template.Library()
@register.simple_tag(takes_context=False)
def related_status(notification):
"""for notifications"""
if not notification.related_status:
return None
return load_subclass(notification.related_status)