8 lines
146 B
Python
8 lines
146 B
Python
from __future__ import absolute_import
|
|
|
|
from django.contrib import admin
|
|
|
|
from .models import BootstrapSetup
|
|
|
|
admin.site.register(BootstrapSetup)
|