Fix the way the form CSS contained in the media attribute is rendered. This is now an interator and not a single value. Replace the current method with a for loop. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
13 lines
369 B
Python
13 lines
369 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.module_loading import import_string
|
|
|
|
from .settings import (
|
|
setting_workflowimagecache_storage,
|
|
setting_workflowimagecache_storage_arguments
|
|
)
|
|
|
|
storage_workflowimagecache = import_string(
|
|
dotted_path=setting_workflowimagecache_storage.value
|
|
)(**setting_workflowimagecache_storage_arguments.value)
|