我正在尝试实现 django-activity-stream 并一直执行操作。(http://django-activity-stream.readthedocs.org/en/latest/actions.html)
到目前为止,这是我采取的行动:
def schedules_concert(sender, instance, created, **kwargs):
action.send(instance, verb='scheduled a concert')
post_save.connect(schedules_concert, sender=Band)
我不清楚我应该在哪里添加动作的触发器。应用程序中的所有数据都是通过管理界面插入的,那么我应该在哪里调用 action.send 命令呢?