45 lines
1.7 KiB
Python
45 lines
1.7 KiB
Python
from __future__ import absolute_import
|
|
|
|
from django.shortcuts import render_to_response
|
|
from django.template import RequestContext
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.utils.safestring import mark_safe
|
|
|
|
from common.utils import encapsulate, return_type
|
|
from common.widgets import exists_with_famfam
|
|
|
|
from .api import settings
|
|
|
|
|
|
def setting_list(request):
|
|
new_settings = []
|
|
for namespace, sub_settings in settings.items():
|
|
for sub_setting in sub_settings:
|
|
if not sub_setting.get('hidden', False):
|
|
new_settings.append({
|
|
'module': sub_setting['module'],
|
|
'name': sub_setting['name'],
|
|
'global_name': sub_setting['global_name'],
|
|
'description': sub_setting.get('description', None),
|
|
'exists': sub_setting.get('exists', False),
|
|
'default': sub_setting['default'],
|
|
})
|
|
context = {
|
|
'title': _(u'Settings'),
|
|
'object_list': new_settings,
|
|
'hide_link': True,
|
|
'hide_object': True,
|
|
'extra_columns': [
|
|
{'name': _(u'Name'), 'attribute': encapsulate(lambda x: mark_safe(u'<span style="font-weight: bold;">%s</span><br />%s' % (x.get('global_name'), x.get('description'))))},
|
|
{
|
|
'name': _(u'Value'), 'attribute': encapsulate(lambda x: mark_safe(u'<div class="nowrap">%s %s</div>' % (
|
|
return_type(getattr(x['module'], x['name'])),
|
|
exists_with_famfam(getattr(x['module'], x['name'])) if x['exists'] else ''
|
|
)))
|
|
},
|
|
]
|
|
}
|
|
|
|
return render_to_response('main/generic_list.html', context,
|
|
context_instance=RequestContext(request))
|