appを使用していて、カスタム streamdjango-activity-stream
を書き込もうとしています。
accounts/managers.py
from datetime import datetime
from django.contrib.contenttypes.models import ContentType
from actstream.managers import ActionManager, stream
class MyActionManager(ActionManager):
@stream
def mystream(self, obj, verb='posted', time=None):
if time is None:
time = datetime.now()
return obj.actor_actions.filter(verb = verb, timestamp__lte = time)
ビュー.py
from actstream.models import Action
current_user = get_object_or_404(User, username=username)
current_user.actor_actions.mystream('commented')
設定.py
ACTSTREAM_MANAGER = 'accounts.managers.MyActionManager'
エラー メッセージ >'str' object has no attribute 'actor_actions'
および完全なトレースバック
どうもありがとう