Please note that this is a squshed commit and the work of: Symbolist, macdiesel, nedbat, doctoryes, muzaffaryousaf and muhammad-ammar
10 lines
272 B
Python
10 lines
272 B
Python
"""
|
|
Django admin dashboard configuration for LMS XBlock infrastructure.
|
|
"""
|
|
|
|
from django.contrib import admin
|
|
from config_models.admin import ConfigurationModelAdmin
|
|
from xblock_config.models import StudioConfig
|
|
|
|
admin.site.register(StudioConfig, ConfigurationModelAdmin)
|