Files
mayan-edms/mayan/apps/smart_settings/apps.py
Roberto Rosario abfc8b0c09 Navigation: Add list facet menu
Add the new list facet navigation menu. Used to provide facets
to the list subtemplate. The list facet allows separating the object
action links from the object navigation links. The list facet
links are displayed before the list object links on the list
subtemplate. In the object views, the list facet menu behaves
exactly the same as the form facet menu.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2018-11-29 04:17:53 -04:00

61 lines
1.8 KiB
Python

from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
from common import (
MayanAppConfig, menu_facet, menu_list_facet, menu_setup,
menu_object, menu_secondary
)
from navigation import SourceColumn
from .classes import Namespace, Setting
from .links import (
link_namespace_detail, link_namespace_list, link_namespace_root_list,
link_setting_edit
)
from .widgets import setting_widget
class SmartSettingsApp(MayanAppConfig):
app_namespace = 'settings'
app_url = 'settings'
has_tests = True
name = 'smart_settings'
verbose_name = _('Smart settings')
def ready(self):
super(SmartSettingsApp, self).ready()
Namespace.initialize()
SourceColumn(
source=Namespace, label=_('Setting count'),
func=lambda context: len(context['object'].settings)
)
SourceColumn(
source=Setting, label=_('Name'),
func=lambda context: setting_widget(context['object'])
)
SourceColumn(
source=Setting, label=_('Value'), attribute='serialized_value'
)
SourceColumn(
source=Setting, label=_('Overrided by environment variable?'),
func=lambda context: _('Yes') if context['object'].environment_variable else _('No')
)
menu_secondary.bind_links(
links=(link_namespace_root_list,), sources=(
Namespace, Setting, 'settings:namespace_list',
)
)
menu_object.bind_links(
links=(link_namespace_detail,), sources=(Namespace,)
)
menu_object.bind_links(
links=(link_setting_edit,), sources=(Setting,)
)
menu_setup.bind_links(links=(link_namespace_list,))
Setting.save_last_known_good()