Ejemplo n.º 1
0
from django.urls import path

from catalogos.views import CategoriaView
from catalogos.views import CategoriaNew
from catalogos.views import CategoriaEdit
from catalogos.views import CategoriaDel
from catalogos.views import ProductoViewSINREGISTRO, ProductoNewSINREGISTRO, ProductoViewINTERNOS, ProductoNewINTERNOS, ProductoEditINTERNOS
from catalogos.views import SubCategoriaView, SubCategoriaNew, SubCategoriaEdit, SubCategoriaDel, ProductoView, ProductoNew, ProductoEdit, categoria_print, historial_list

urlpatterns = [
    path('categorias', CategoriaView.as_view(), name='categoria_list'),
    path('categorias/new', CategoriaNew.as_view(), name='categoria_new'),
    path('categoria/edit/<int:pk>',
         CategoriaEdit.as_view(),
         name='categoria_edit'),
    path('categoria/delete/<int:pk>',
         CategoriaDel.as_view(),
         name='categoria_delete'),
    path('categoria/dprint', categoria_print, name='categoria_print'),
    path('categoria/dprint/<int:pk>',
         categoria_print,
         name='categoria_print_one'),
    path('subcategorias', SubCategoriaView.as_view(),
         name='subcategoria_list'),
    path('subcategorias/new',
         SubCategoriaNew.as_view(),
         name='subcategoria_new'),
    path('subcategoria/edit/<int:pk>',
         SubCategoriaEdit.as_view(),
         name='subcategoria_edit'),
    path('subcategoria/delete/<int:pk>',
Ejemplo n.º 2
0
from django.urls import path

from catalogos.views import CategoriaView, CategoriaNew, CategoriaEdit, CategoriaDel, \
    SubCategoriaView, SubCategoriaNew, SubCategoriaEdit, SubCategoriaDel, \
    ProductoView, ProductoNew, ProductoEdit, \
    categoria_print

urlpatterns = [
    path('categorias', CategoriaView.as_view(), name='categoria_list'),
    path('categorias/new', CategoriaNew.as_view(), name='categoria_new' ),
    path('categoria/edit/<int:pk>', CategoriaEdit.as_view(), name='categoria_edit'),
    path('categoria/delete/<int:pk>', CategoriaDel.as_view(), name='categoria_delete'),
    path('categoria/print',categoria_print, name='categoria_print'),
    path('categoria/print/<int:pk>',categoria_print, name='categoria_print_one'),

    path('subcategorias', SubCategoriaView.as_view(), name='subcategoria_list'),
    path('subcategorias/new', SubCategoriaNew.as_view(), name='subcategoria_new' ),
    path('subcategoria/edit/<int:pk>', SubCategoriaEdit.as_view(), name='subcategoria_edit'),
    path('subcategoria/delete/<int:pk>', SubCategoriaDel.as_view(), name='subcategoria_delete'),

    path('productos', ProductoView.as_view(), name='producto_list'),
    path('producto/new', ProductoNew.as_view(), name='prodcuto_new' ),
    path('producto/edit/<int:pk>', ProductoEdit.as_view(), name='producto_edit'),
]