New App for Components

This commit is contained in:
Juhn-Vitus Saß
2025-02-14 16:45:28 +01:00
parent 897ee79237
commit 7f1be5afab
8 changed files with 20 additions and 2 deletions

View File

3
core/components/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
core/components/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class ComponentsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'components'

View File

View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
core/components/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
core/components/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.