from django.urls import path from .views import * from cookbook.views import api urlpatterns = [ path('', views.index, name='index'), path('new/recipe', new.recipe, name='new_recipe'), path('new/category', new.category, name='new_category'), path('new/keyword', new.keyword, name='new_keyword'), path('edit/recipe//', edit.recipe, name='edit_recipe'), path('edit/category//', edit.category, name='edit_category'), path('edit/keyword//', edit.keyword, name='edit_keyword'), path('batch/import', batch.batch_import, name='batch_import'), path('batch/category', batch.batch_edit, name='batch_edit'), path('api/get_file_link//', api.get_file_link, name='get_file_link'), ]