Add three bare modules

This commit is contained in:
Kumi 2021-01-03 08:42:04 +01:00
parent 1f78158637
commit 8e34e2579d
19 changed files with 64 additions and 0 deletions

13
TODO.md
View file

@ -29,6 +29,19 @@
[x] Statistics / template tags
[_] Check for copy-paste errors in pages
## meds module
[ ] Implement medication tracker
[ ] Implement supply / refill system
## habits module
[ ] Implement regular habit tracker
## friends module
[ ] Implement basic personal relationship manager
## Frontend
[_] Better icons for sidebar items

0
friends/__init__.py Normal file
View file

3
friends/admin.py Normal file
View file

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

5
friends/apps.py Normal file
View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class FriendsConfig(AppConfig):
name = 'friends'

3
friends/models.py Normal file
View file

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

3
friends/tests.py Normal file
View file

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

3
friends/views.py Normal file
View file

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

0
habits/__init__.py Normal file
View file

3
habits/admin.py Normal file
View file

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

5
habits/apps.py Normal file
View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class HabitsConfig(AppConfig):
name = 'habits'

3
habits/models.py Normal file
View file

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

3
habits/tests.py Normal file
View file

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

3
habits/views.py Normal file
View file

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

0
meds/__init__.py Normal file
View file

3
meds/admin.py Normal file
View file

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

5
meds/apps.py Normal file
View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class MedsConfig(AppConfig):
name = 'meds'

3
meds/models.py Normal file
View file

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

3
meds/tests.py Normal file
View file

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

3
meds/views.py Normal file
View file

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