jquery.formset.js
is showing up in my sources. I'm not sure what's wrong.
CRUD ERROR!
I'm trying to implemnent a CRUD view
My model: Item
app/urls.pyurlpatterns = [
url('^$', generic.RedirectView.as_view(url='./itens/', permanent=False), name="index"),
url('^itens/', include(ItemViewSet().urls)),
]
Global Urlsurlpatterns = [
url(r'', include(frontend_urls)),
]
When I try to access the url /itens, I get the error:
Reverse for 'item_add' not found. 'item_add' is not a valid view function or pattern name.
what is my mistake?