Added initial transport app

This commit is contained in:
st01765
2026-02-04 15:04:52 +11:00
parent 909448d12a
commit e86a842e69
8 changed files with 19 additions and 0 deletions
+1
View File
@@ -44,6 +44,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'import_export',
'rangefilter',
'transport'
]
if platform.system() == "Linux":
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 TransportConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'transport'
+3
View File
@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+3
View File
@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.