From 7bfc879b8fe2ce3b3cd172f4a1f1aff4b43cd670 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Fri, 8 Dec 2017 17:30:13 +0000 Subject: [PATCH] Add the apply app Move the apply folder to the correct location --- opentech/apply/__init__.py | 0 opentech/apply/admin.py | 3 +++ opentech/apply/apps.py | 5 +++++ opentech/apply/migrations/__init__.py | 0 opentech/apply/models.py | 3 +++ opentech/apply/tests.py | 3 +++ opentech/apply/views.py | 3 +++ opentech/settings/base.py | 1 + 8 files changed, 18 insertions(+) create mode 100644 opentech/apply/__init__.py create mode 100644 opentech/apply/admin.py create mode 100644 opentech/apply/apps.py create mode 100644 opentech/apply/migrations/__init__.py create mode 100644 opentech/apply/models.py create mode 100644 opentech/apply/tests.py create mode 100644 opentech/apply/views.py diff --git a/opentech/apply/__init__.py b/opentech/apply/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/opentech/apply/admin.py b/opentech/apply/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/opentech/apply/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/opentech/apply/apps.py b/opentech/apply/apps.py new file mode 100644 index 000000000..49fae9c7f --- /dev/null +++ b/opentech/apply/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ApplyConfig(AppConfig): + name = 'apply' diff --git a/opentech/apply/migrations/__init__.py b/opentech/apply/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/opentech/apply/models.py b/opentech/apply/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/opentech/apply/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/opentech/apply/tests.py b/opentech/apply/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/opentech/apply/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/opentech/apply/views.py b/opentech/apply/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/opentech/apply/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/opentech/settings/base.py b/opentech/settings/base.py index bf565f67d..2c797eb45 100644 --- a/opentech/settings/base.py +++ b/opentech/settings/base.py @@ -12,6 +12,7 @@ BASE_DIR = os.path.dirname(PROJECT_DIR) # Application definition INSTALLED_APPS = [ + 'opentech.apply', 'opentech.categories', 'opentech.esi', 'opentech.forms', -- GitLab