6 lines
124 B
Python
6 lines
124 B
Python
from django.contrib import admin
|
|
from . import models
|
|
|
|
# Register your models here.
|
|
admin.site.register(models.UploadImage)
|