Add blank environment app

This commit is contained in:
Kumi 2021-10-07 16:36:19 +02:00
parent 084bb6bbdb
commit ed031ba969
7 changed files with 23 additions and 1 deletions

View file

@ -48,4 +48,8 @@
[_] Sidebar auto-generation (?)
[_] Fix sidebar highlighting for pages with same name
[_] Move dashboard components to module templates
[_] Fix buttons on mobile devices
[_] Fix buttons on mobile devices
## environment module
[_] CO2 accounting

0
environment/__init__.py Normal file
View file

3
environment/admin.py Normal file
View file

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

6
environment/apps.py Normal file
View file

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

3
environment/models.py Normal file
View file

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

3
environment/tests.py Normal file
View file

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

3
environment/views.py Normal file
View file

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