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.

added admin search

+7 -1
+5
HISTORY.rst
··· 3 3 History 4 4 ------- 5 5 6 + 1.0a2 (2017-2-20) 7 + +++++++++++++++++ 8 + 9 + * Add search options to admin. 10 + 6 11 1.0a1 (2017-2-20) 7 12 +++++++++++++++++ 8 13
+1 -1
options/__init__.py
··· 14 14 15 15 default_app_config = 'options.apps.ConfigurationsConfig' 16 16 17 - VERSION = (1, 0, 0, 'alpha', 1) 17 + VERSION = (1, 0, 0, 'alpha', 2) 18 18 19 19 __version__ = get_version(VERSION)
+1
options/admin.py
··· 11 11 """Manage configuration options.""" 12 12 13 13 list_display = ['public_name', 'value'] 14 + search_fields = ['public_name', 'name']