created dashboard app

dev
Calum Andrew Morrell 2025-11-05 16:11:39 +00:00
parent e4f2cd1fe4
commit 59c0f0cca2
7 changed files with 18 additions and 0 deletions

0
dashboard/__init__.py Normal file
View File

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.

3
dashboard/views.py Normal file
View File

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