diff --git a/apps/participation/__init__.py b/apps/participation/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/participation/admin.py b/apps/participation/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/apps/participation/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/apps/participation/apps.py b/apps/participation/apps.py new file mode 100644 index 0000000..4eff4ab --- /dev/null +++ b/apps/participation/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ParticipationConfig(AppConfig): + name = 'participation' diff --git a/apps/participation/migrations/__init__.py b/apps/participation/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/participation/models.py b/apps/participation/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/apps/participation/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/apps/participation/tests.py b/apps/participation/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/apps/participation/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/apps/participation/views.py b/apps/participation/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/apps/participation/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/apps/registration/__init__.py b/apps/registration/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/registration/admin.py b/apps/registration/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/apps/registration/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/apps/registration/apps.py b/apps/registration/apps.py new file mode 100644 index 0000000..127d8e4 --- /dev/null +++ b/apps/registration/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class RegistrationConfig(AppConfig): + name = 'registration' diff --git a/apps/registration/migrations/__init__.py b/apps/registration/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/registration/models.py b/apps/registration/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/apps/registration/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/apps/registration/tests.py b/apps/registration/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/apps/registration/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/apps/registration/views.py b/apps/registration/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/apps/registration/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/corres2math/settings.py b/corres2math/settings.py index fcfe553..4d116ab 100644 --- a/corres2math/settings.py +++ b/corres2math/settings.py @@ -58,6 +58,9 @@ INSTALLED_APPS = [ 'polymorphic', 'rest_framework', 'rest_framework.authtoken', + + 'registration', + 'participation', ] MIDDLEWARE = [