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