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.

Merge branch 'develop'

+6 -4
+5
HISTORY.rst
··· 3 3 History 4 4 ------- 5 5 6 + 2.0.2 (2019-08-27) 7 + ++++++++++++++++++ 8 + 9 + * Changed admin module. 10 + 6 11 2.0.1 (2019-08-27) 7 12 ++++++++++++++++++ 8 13
+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)