From: David Kerkeslager Date: Wed, 2 Mar 2022 23:11:41 +0000 (-0500) Subject: Add apps for the planned areas X-Git-Url: https://code.kerkeslager.com/?p=climbing.kerkeslager.com;a=commitdiff_plain;h=a61e6c6f81f4b3b226cdc232272f2cea3a129c2a Add apps for the planned areas --- diff --git a/src/climbing/__init__.py b/src/climbing/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/climbing/admin.py b/src/climbing/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/src/climbing/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/src/climbing/apps.py b/src/climbing/apps.py new file mode 100644 index 0000000..22b92e3 --- /dev/null +++ b/src/climbing/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ClimbingConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'climbing' diff --git a/src/climbing/migrations/__init__.py b/src/climbing/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/climbing/models.py b/src/climbing/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/src/climbing/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/src/climbing/tests.py b/src/climbing/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/src/climbing/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/src/climbing/views.py b/src/climbing/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/src/climbing/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/src/nutrition/__init__.py b/src/nutrition/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/nutrition/admin.py b/src/nutrition/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/src/nutrition/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/src/nutrition/apps.py b/src/nutrition/apps.py new file mode 100644 index 0000000..7d077c9 --- /dev/null +++ b/src/nutrition/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class NutritionConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'nutrition' diff --git a/src/nutrition/migrations/__init__.py b/src/nutrition/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/nutrition/models.py b/src/nutrition/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/src/nutrition/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/src/nutrition/tests.py b/src/nutrition/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/src/nutrition/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/src/nutrition/views.py b/src/nutrition/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/src/nutrition/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/src/training/__init__.py b/src/training/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/training/admin.py b/src/training/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/src/training/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/src/training/apps.py b/src/training/apps.py new file mode 100644 index 0000000..8051e6c --- /dev/null +++ b/src/training/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class TrainingConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'training' diff --git a/src/training/migrations/__init__.py b/src/training/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/training/models.py b/src/training/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/src/training/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/src/training/tests.py b/src/training/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/src/training/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/src/training/views.py b/src/training/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/src/training/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.