beta v.1.0

This commit is contained in:
2025-10-11 13:09:43 +00:00
commit c476b0171f
146 changed files with 32052 additions and 0 deletions

0
Base/__init__.py Normal file
View File

3
Base/admin.py Normal file
View File

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

6
Base/apps.py Normal file
View File

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

View File

3
Base/models.py Normal file
View File

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

3
Base/tests.py Normal file
View File

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

3
Base/views.py Normal file
View File

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