Simple app to add configuration options to a Django project.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 6 lines 209 B view raw
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()}