added history page

This commit is contained in:
vabene1111
2020-05-11 12:59:54 +02:00
parent 5ad27c015e
commit f6aa50bbfc
6 changed files with 66 additions and 4 deletions

View File

@ -14,6 +14,7 @@ urlpatterns = [
path('plan/entry/<int:pk>', views.meal_plan_entry, name='view_plan_entry'),
path('shopping/', views.shopping_list, name='view_shopping'),
path('settings/', views.settings, name='view_settings'),
path('history/', views.history, name='view_history'),
path('import/', import_export.import_recipe, name='view_import'),
path('export/', import_export.export_recipe, name='view_export'),