Add blank environment app
This commit is contained in:
parent
fb8cb5f298
commit
7401b8a87c
7 changed files with 23 additions and 1 deletions
4
TODO.md
4
TODO.md
|
@ -49,3 +49,7 @@
|
||||||
[_] Fix sidebar highlighting for pages with same name
|
[_] Fix sidebar highlighting for pages with same name
|
||||||
[_] Move dashboard components to module templates
|
[_] 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
0
environment/__init__.py
Normal file
3
environment/admin.py
Normal file
3
environment/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
6
environment/apps.py
Normal file
6
environment/apps.py
Normal 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
3
environment/models.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
environment/tests.py
Normal file
3
environment/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
environment/views.py
Normal file
3
environment/views.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
Reference in a new issue