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>
15 lines
359 B
Python
15 lines
359 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.common import MayanAppConfig
|
|
|
|
|
|
class DashboardsApp(MayanAppConfig):
|
|
app_namespace = 'dashboards'
|
|
app_url = 'dashboards'
|
|
has_rest_api = False
|
|
has_tests = False
|
|
name = 'mayan.apps.dashboards'
|
|
verbose_name = _('Dashboards')
|