Skip to content

Commit

Permalink
Closed #39 with perhaps too minor of README updates; fixed home app's…
Browse files Browse the repository at this point in the history
… namespace registration and landing url.
  • Loading branch information
dgets committed Jan 1, 2019
1 parent 5e20aff commit e4163c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ This project is _way_ alpha, and should not be considered even close to how it w

### App Structure

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

### Database Structure

1 change: 1 addition & 0 deletions home/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from . import views

app_name = "home"
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
]
3 changes: 2 additions & 1 deletion lasttime/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
path('subadd/', include('subadd.urls')),
path('recadm/', include('recadm.urls')),
path('dataview/', include('dataview.urls')),
path('home/', include('home.urls')),
# path('home/', include('home.urls')),
path('', include('home.urls')),
path('admin/', admin.site.urls),
]

0 comments on commit e4163c6

Please sign in to comment.