This commit is contained in:
2025-08-31 00:29:53 +02:00
parent 191bd84573
commit 29611b15ca
87 changed files with 2451 additions and 0 deletions
View File
+3
View File
@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.
+6
View File
@@ -0,0 +1,6 @@
from django.apps import AppConfig
class CoreConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'core'
View File
+3
View File
@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.
+2
View File
@@ -0,0 +1,2 @@
{% extends "core/layout.html" %}
View File
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+5
View File
@@ -0,0 +1,5 @@
from django.urls import path
urlspatterns = [
]
+5
View File
@@ -0,0 +1,5 @@
from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = "core/index.html"