Initial commit

This commit is contained in:
root
2026-07-18 16:04:40 +00:00
commit d96a087a16
6143 changed files with 827458 additions and 0 deletions

0
dashboard/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

3
dashboard/admin.py Normal file
View File

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

6
dashboard/apps.py Normal file
View File

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

View File

3
dashboard/models.py Normal file
View File

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

3
dashboard/tests.py Normal file
View File

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

6
dashboard/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='dashboard'),
]

6
dashboard/views.py Normal file
View File

@@ -0,0 +1,6 @@
from django.shortcuts import render
from django.http import HttpResponse
def home(request):
return HttpResponse("Dashboard")