Instead of inserting the path of the apps into the Python app, the apps are now referenced by their full import path. This app name claves with external or native Python libraries. Example: Mayan statistics app vs. Python new statistics library. Every app reference is now prepended with 'mayan.apps'. Existing config.yml files need to be updated manually. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.navigation import Link
|
|
|
|
from .icons import icon_transformation, icon_transformation_create
|
|
from .permissions import (
|
|
permission_transformation_create, permission_transformation_delete,
|
|
permission_transformation_edit, permission_transformation_view
|
|
)
|
|
|
|
|
|
def get_kwargs_factory(variable_name):
|
|
def get_kwargs(context):
|
|
ContentType = apps.get_model(
|
|
app_label='contenttypes', model_name='ContentType'
|
|
)
|
|
|
|
content_type = ContentType.objects.get_for_model(
|
|
context[variable_name]
|
|
)
|
|
return {
|
|
'app_label': '"{}"'.format(content_type.app_label),
|
|
'model': '"{}"'.format(content_type.model),
|
|
'object_id': '{}.pk'.format(variable_name)
|
|
}
|
|
|
|
return get_kwargs
|
|
|
|
|
|
link_transformation_create = Link(
|
|
icon_class=icon_transformation_create,
|
|
kwargs=get_kwargs_factory('content_object'),
|
|
permissions=(permission_transformation_create,),
|
|
text=_('Create new transformation'), view='converter:transformation_create'
|
|
)
|
|
link_transformation_delete = Link(
|
|
args='resolved_object.pk', permissions=(permission_transformation_delete,),
|
|
tags='dangerous', text=_('Delete'), view='converter:transformation_delete'
|
|
)
|
|
link_transformation_edit = Link(
|
|
args='resolved_object.pk', permissions=(permission_transformation_edit,),
|
|
text=_('Edit'), view='converter:transformation_edit'
|
|
)
|
|
link_transformation_list = Link(
|
|
icon_class=icon_transformation,
|
|
kwargs=get_kwargs_factory('resolved_object'),
|
|
permissions=(permission_transformation_view,), text=_('Transformations'),
|
|
view='converter:transformation_list'
|
|
)
|