or, using proper the proper Python 3 relative imports (e.g., 'from .views import x') which are standard and unambiguous.
12 lines
267 B
Python
12 lines
267 B
Python
"""
|
|
Admin site bindings for contentstore
|
|
"""
|
|
|
|
|
|
from config_models.admin import ConfigurationModelAdmin
|
|
from django.contrib import admin
|
|
|
|
from cms.djangoapps.contentstore.models import VideoUploadConfig
|
|
|
|
admin.site.register(VideoUploadConfig, ConfigurationModelAdmin)
|