mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
An optional app can possibly not have a pannel pref
This commit is contained in:
parent
745a30280c
commit
2df79830b6
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ def display_options(request):
|
|||
document_template_list = DocumentTemplate.objects.order_by('name')
|
||||
|
||||
optionnal_apps = [import_module(app) for app in OPTIONNAL_APPS_RE2O]
|
||||
optionnal_templates_list = [app.views.preferences(request) for app in optionnal_apps]
|
||||
optionnal_templates_list = [app.views.preferences(request) for app in optionnal_apps if hasattr(app.views, 'preferences')]
|
||||
|
||||
return form({
|
||||
'useroptions': useroptions,
|
||||
|
|
Loading…
Reference in a new issue