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
880d2f8db4
commit
a69e436da5
16 changed files with 108 additions and 25 deletions
|
|
@ -1,6 +1,5 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from .models import Project, Issue
|
||||
from .models import Issue
|
||||
|
||||
admin.site.register(Project)
|
||||
admin.site.register(Issue)
|
||||
|
|
|
|||
Reference in a new issue