From 6e0bc260d4ff264d1d297d5418eb8a0ef24874b8 Mon Sep 17 00:00:00 2001 From: Jan Nowak Date: Thu, 9 Jun 2022 14:39:12 +0200 Subject: [PATCH] Add core app --- .idea/WTV2D.iml | 23 +++++++++++++++++++ .idea/inspectionProfiles/Project_Default.xml | 16 +++++++++++++ .../inspectionProfiles/profiles_settings.xml | 6 +++++ .idea/misc.xml | 4 ++++ .idea/modules.xml | 8 +++++++ .idea/vcs.xml | 6 +++++ core/__init__.py | 0 core/admin.py | 3 +++ core/apps.py | 5 ++++ core/migrations/__init__.py | 0 core/migrations/templates/core/home.html | 0 core/models.py | 3 +++ core/tests.py | 3 +++ core/views.py | 3 +++ 14 files changed, 80 insertions(+) create mode 100644 .idea/WTV2D.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100755 core/__init__.py create mode 100755 core/admin.py create mode 100755 core/apps.py create mode 100755 core/migrations/__init__.py create mode 100644 core/migrations/templates/core/home.html create mode 100755 core/models.py create mode 100755 core/tests.py create mode 100755 core/views.py diff --git a/.idea/WTV2D.iml b/.idea/WTV2D.iml new file mode 100644 index 0000000..0eeeb43 --- /dev/null +++ b/.idea/WTV2D.iml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..465bcb9 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..dbf7f65 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9ffba53 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/core/__init__.py b/core/__init__.py new file mode 100755 index 0000000..e69de29 diff --git a/core/admin.py b/core/admin.py new file mode 100755 index 0000000..8c38f3f --- /dev/null +++ b/core/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/core/apps.py b/core/apps.py new file mode 100755 index 0000000..26f78a8 --- /dev/null +++ b/core/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CoreConfig(AppConfig): + name = 'core' diff --git a/core/migrations/__init__.py b/core/migrations/__init__.py new file mode 100755 index 0000000..e69de29 diff --git a/core/migrations/templates/core/home.html b/core/migrations/templates/core/home.html new file mode 100644 index 0000000..e69de29 diff --git a/core/models.py b/core/models.py new file mode 100755 index 0000000..71a8362 --- /dev/null +++ b/core/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/core/tests.py b/core/tests.py new file mode 100755 index 0000000..7ce503c --- /dev/null +++ b/core/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/core/views.py b/core/views.py new file mode 100755 index 0000000..91ea44a --- /dev/null +++ b/core/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.