我正在尝试实现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命令?