Initial commit

This commit is contained in:
2022-01-01 18:21:32 +01:00
commit 65702e15ef
33 changed files with 372 additions and 0 deletions

6
projects/admin.py Normal file
View File

@@ -0,0 +1,6 @@
from django.contrib import admin
from projects.models import Project
# Register your models here.
admin.site.register(Project)