2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Redirect non-ajax forms to /

This commit is contained in:
Oliver Walters
2019-05-29 22:11:03 +10:00
parent 080f9da9c8
commit f4a052ee2b
2 changed files with 5 additions and 2 deletions

View File

@ -36,7 +36,7 @@ stock_urls = [
url(r'^track/?', views.StockTrackingIndex.as_view(), name='stock-tracking-list'),
url(r'^move/', views.StockItemMoveMultiple.as_view(), name='stock-item-move-multiple'),
url(r'^move/?', views.StockItemMoveMultiple.as_view(), name='stock-item-move-multiple'),
# Individual stock items
url(r'^item/(?P<pk>\d+)/', include(stock_item_detail_urls)),