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.

admin updated

+1 -4
+1 -4
options/admin.py
··· 1 1 from django.contrib import admin 2 2 3 - from options import get_option_model, get_user_option_model 4 - 5 - Option = get_option_model() 6 - UserOption = get_user_option_model() 3 + from options.models import Option, UserOption 7 4 8 5 9 6 @admin.register(Option)