Allow passing a widget class to SourceColumn. This makes using lambdas to render model column unnecesary and are mostly removed too. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
120 lines
3.9 KiB
Python
120 lines
3.9 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.acls import ModelPermission
|
|
from mayan.apps.acls.links import link_acl_list
|
|
from mayan.apps.acls.permissions import (
|
|
permission_acl_edit, permission_acl_view
|
|
)
|
|
from mayan.apps.common import (
|
|
MayanAppConfig, menu_facet, menu_list_facet, menu_object, menu_secondary,
|
|
menu_setup, menu_sidebar
|
|
)
|
|
from mayan.apps.common.widgets import TwoStateWidget
|
|
from mayan.apps.navigation import SourceColumn
|
|
|
|
from .links import (
|
|
link_smart_link_condition_create, link_smart_link_condition_delete,
|
|
link_smart_link_condition_edit, link_smart_link_condition_list,
|
|
link_smart_link_create, link_smart_link_delete,
|
|
link_smart_link_document_types, link_smart_link_edit,
|
|
link_smart_link_instance_view, link_smart_link_instances_for_document,
|
|
link_smart_link_list, link_smart_link_setup
|
|
)
|
|
from .permissions import (
|
|
permission_smart_link_delete, permission_smart_link_edit,
|
|
permission_smart_link_view
|
|
)
|
|
|
|
|
|
class LinkingApp(MayanAppConfig):
|
|
app_namespace = 'linking'
|
|
app_url = 'smart_links'
|
|
has_rest_api = True
|
|
has_tests = True
|
|
name = 'mayan.apps.linking'
|
|
verbose_name = _('Linking')
|
|
|
|
def ready(self):
|
|
super(LinkingApp, self).ready()
|
|
|
|
Document = apps.get_model(
|
|
app_label='documents', model_name='Document'
|
|
)
|
|
|
|
ResolvedSmartLink = self.get_model('ResolvedSmartLink')
|
|
SmartLink = self.get_model('SmartLink')
|
|
SmartLinkCondition = self.get_model('SmartLinkCondition')
|
|
|
|
ModelPermission.register(
|
|
model=SmartLink, permissions=(
|
|
permission_acl_edit, permission_acl_view,
|
|
permission_smart_link_delete, permission_smart_link_edit,
|
|
permission_smart_link_view
|
|
)
|
|
)
|
|
|
|
SourceColumn(
|
|
func=lambda context: context['object'].get_label_for(
|
|
document=context['document']
|
|
), label=_('Label'), source=ResolvedSmartLink
|
|
)
|
|
|
|
SourceColumn(
|
|
attribute='label', is_identifier=True, source=SmartLink
|
|
)
|
|
SourceColumn(attribute='dynamic_label', source=SmartLink)
|
|
SourceColumn(
|
|
attribute='enabled', source=SmartLink, widget=TwoStateWidget
|
|
)
|
|
|
|
SourceColumn(
|
|
attribute='enabled', source=SmartLinkCondition,
|
|
widget=TwoStateWidget
|
|
)
|
|
|
|
menu_facet.bind_links(
|
|
links=(link_smart_link_instances_for_document,),
|
|
sources=(Document,)
|
|
)
|
|
menu_list_facet.bind_links(
|
|
links=(
|
|
link_acl_list, link_smart_link_document_types,
|
|
link_smart_link_condition_list,
|
|
), sources=(SmartLink,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_smart_link_condition_edit,
|
|
link_smart_link_condition_delete
|
|
), sources=(SmartLinkCondition,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_smart_link_edit, link_smart_link_delete
|
|
), sources=(SmartLink,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(link_smart_link_instance_view,),
|
|
sources=(ResolvedSmartLink,)
|
|
)
|
|
menu_secondary.bind_links(
|
|
links=(link_smart_link_list, link_smart_link_create),
|
|
sources=(
|
|
SmartLink, 'linking:smart_link_list',
|
|
'linking:smart_link_create'
|
|
)
|
|
)
|
|
menu_setup.bind_links(links=(link_smart_link_setup,))
|
|
menu_sidebar.bind_links(
|
|
links=(link_smart_link_condition_create,),
|
|
sources=(
|
|
'linking:smart_link_condition_list',
|
|
'linking:smart_link_condition_create',
|
|
'linking:smart_link_condition_edit',
|
|
'linking:smart_link_condition_delete'
|
|
)
|
|
)
|