使用来自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)
但那不对。有人可以帮忙吗?