Include example project

This commit is contained in:
Sebastien Corbin
2020-04-18 20:20:26 +02:00
parent ac8c20abb3
commit a6946d160d
10 changed files with 148 additions and 3 deletions

5
example_project/admin.py Normal file
View File

@@ -0,0 +1,5 @@
from django.contrib import admin
from .models import ExampleModel
admin.site.register(ExampleModel)