Create new applications

This commit is contained in:
Yohann D'ANELLO 2020-09-21 15:41:55 +02:00
parent f0eb6abe85
commit ca4b0729e7
15 changed files with 37 additions and 0 deletions

View File

View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ParticipationConfig(AppConfig):
name = 'participation'

View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

View File

View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class RegistrationConfig(AppConfig):
name = 'registration'

View File

View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

View File

@ -58,6 +58,9 @@ INSTALLED_APPS = [
'polymorphic',
'rest_framework',
'rest_framework.authtoken',
'registration',
'participation',
]
MIDDLEWARE = [