6 lines
100 B
Python
6 lines
100 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from frog_api.models import Project
|
||
|
|
||
|
admin.site.register(Project)
|