From 62011a9ce11da32fcff3f481e0edc30ca678ac3a Mon Sep 17 00:00:00 2001 From: Christopher O'Connell Date: Wed, 7 Oct 2020 22:17:02 -0400 Subject: [PATCH] Added a new URL for the log nutrition plan --- wger/nutrition/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wger/nutrition/urls.py b/wger/nutrition/urls.py index aafac4454..f198722c2 100644 --- a/wger/nutrition/urls.py +++ b/wger/nutrition/urls.py @@ -200,6 +200,9 @@ patterns_diary = [ url(r'^log-meal/(?P\d+)$', log.log_meal, name='log_meal'), + url(r'^log-plan/(?P\d+)$', + log.log_plan, + name='log_plan') ]