Add three bare modules
This commit is contained in:
parent
8a6db379e4
commit
f7b0c48748
19 changed files with 64 additions and 0 deletions
13
TODO.md
13
TODO.md
|
@ -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
0
friends/__init__.py
Normal file
3
friends/admin.py
Normal file
3
friends/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
friends/apps.py
Normal file
5
friends/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class FriendsConfig(AppConfig):
|
||||
name = 'friends'
|
3
friends/models.py
Normal file
3
friends/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
friends/tests.py
Normal file
3
friends/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
friends/views.py
Normal file
3
friends/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
0
habits/__init__.py
Normal file
0
habits/__init__.py
Normal file
3
habits/admin.py
Normal file
3
habits/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
habits/apps.py
Normal file
5
habits/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class HabitsConfig(AppConfig):
|
||||
name = 'habits'
|
3
habits/models.py
Normal file
3
habits/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
habits/tests.py
Normal file
3
habits/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
habits/views.py
Normal file
3
habits/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
0
meds/__init__.py
Normal file
0
meds/__init__.py
Normal file
3
meds/admin.py
Normal file
3
meds/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
meds/apps.py
Normal file
5
meds/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class MedsConfig(AppConfig):
|
||||
name = 'meds'
|
3
meds/models.py
Normal file
3
meds/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
meds/tests.py
Normal file
3
meds/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
meds/views.py
Normal file
3
meds/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue