Select the types of activity you want to include in your feed.
1from options.models import Option 2 3 4def options(request): 5 """Context processor that adds options to the template context.""" 6 return {option.name: option.get_value() for option in Option.objects.all()}