A Facebook-like timeline app for Django admin. It's very similar to built-in feature Daily progress, but has nicer templates and infinite scroll. Actions are broken up by day, then by action. It's possible to filter actions by user (multiple select) and content type (multiple select).
AttributeError at /timeline/
'NoneType' object has no attribute 'name'
]
)
)
def get_content_types(data):
"""Get content type choices."""
return list(set([(d.content_type_id, d.content_type.name) for d in data])) ...
class FilterForm(forms.Form):
"""Filter form to be used in the timeline.
``users``: Users list to be filtered on.
AttributeError at /timeline/ 'NoneType' object has no attribute 'name'