使用来自https://github.com/pinax/django-notification的 django-notification ,我正在尝试将额外的内容附加到我的通知中,如下所示:
notification.send_now([b.person],
"employee_access_request",
{"from_user": request.user.email,
"time_sent": timezone.localtime(timezone.now())}
)
唯一的问题是我不知道如何访问这些额外的内容,例如“from_user”,并且文档并没有真正解释它。我尝试过类似的东西
notices = notification.NoticeSetting.objects.filter(user = user)
for notice in notices:
print(notice.from_user)
但那是不对的。任何人都可以帮忙吗?