Skip to content

Commit e4163c6

Browse files
committed
Closed #39 with perhaps too minor of README updates; fixed home app's namespace registration and landing url.
1 parent 5e20aff commit e4163c6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ This project is _way_ alpha, and should not be considered even close to how it w
1818

1919
### App Structure
2020

21+
* **home**: app that will just handle initial navigation links and a logo/pitch page for people investigating the project
2122
* **subadd**: app for adding substances and their necessary chemical data to the database
2223
* **recadm**: app for recording administration data per usage (selecting substances added via **subadd**)
24+
* **dataview**: app for displaying detailed data gleaned from different substance administrations (this is where all of the gravy is at)
2325

24-
### Database Structure
2526

home/urls.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from . import views
44

5+
app_name = "home"
56
urlpatterns = [
67
path('', views.IndexView.as_view(), name='index'),
78
]

lasttime/urls.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
path('subadd/', include('subadd.urls')),
2121
path('recadm/', include('recadm.urls')),
2222
path('dataview/', include('dataview.urls')),
23-
path('home/', include('home.urls')),
23+
# path('home/', include('home.urls')),
24+
path('', include('home.urls')),
2425
path('admin/', admin.site.urls),
2526
]

0 commit comments

Comments
 (0)