20 lines
591 B
Python
20 lines
591 B
Python
from __future__ import absolute_import
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from navigation.api import register_sidebar_template
|
|
from project_tools.api import register_tool
|
|
|
|
from .utils import load_backend
|
|
from .links import formats_list
|
|
from .conf.settings import GRAPHICS_BACKEND
|
|
|
|
register_sidebar_template(['formats_list'], 'converter_file_formats_help.html')
|
|
|
|
try:
|
|
backend = load_backend().ConverterClass()
|
|
except ImproperlyConfigured:
|
|
raise ImproperlyConfigured(u'Missing or incorrect converter backend: %s' % GRAPHICS_BACKEND)
|
|
|
|
register_tool(formats_list)
|