add index view; add Project and Issue models
This commit is contained in:
parent
6c43c8b360
commit
9d77a7d232
7 changed files with 78 additions and 6 deletions
|
|
@ -1,3 +1,6 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
from .models import Project, Issue
|
||||
|
||||
admin.site.register(Project)
|
||||
admin.site.register(Issue)
|
||||
|
|
|
|||
Reference in a new issue