mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
Style fixes
This commit is contained in:
parent
15d27cafec
commit
f21a05dfa3
@ -29,7 +29,7 @@ projectcategorypatterns = [
|
||||
|
||||
urlpatterns = [
|
||||
# Individual project URL
|
||||
url(r'^(?P<pk>[0-9]+)/?$', include(projectdetailpatterns)),
|
||||
url(r'^(?P<pk>[0-9]+)/?', include(projectdetailpatterns)),
|
||||
|
||||
# List of all projects
|
||||
url(r'^$', views.ProjectList.as_view()),
|
||||
|
@ -21,6 +21,7 @@ class StockFilter(django_filters.rest_framework.FilterSet):
|
||||
model = StockItem
|
||||
fields = ['quantity']
|
||||
|
||||
|
||||
class StockList(generics.ListCreateAPIView):
|
||||
|
||||
serializer_class = StockItemSerializer
|
||||
|
Loading…
x
Reference in New Issue
Block a user