create projects app; move Project model to projects app; recreate migrations because moving the model caused problems o.o
This commit is contained in:
parent
a14ab33927
commit
0013410ac1
16 changed files with 108 additions and 25 deletions
5
projects/admin.py
Normal file
5
projects/admin.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from .models import Project
|
||||
|
||||
admin.site.register(Project)
|
||||
Reference in a new issue