##// END OF EJS Templates
Se solucionó el mensaje de advertencia HINT por DEFATUL_AUTO_FIELD
Se solucionó el mensaje de advertencia HINT por DEFATUL_AUTO_FIELD

File last commit:

r338:7377db7c77e8
r360:3d072a3b4687
Show More
urls.py
8 lines | 214 B | text/x-python | PythonLexer
from django.urls import path
from . import views
urlpatterns = (
path('<int:id_conf>/', views.cgs_conf, name='url_cgs_conf'),
path('<int:id_conf>/edit/', views.cgs_conf_edit, name='url_edit_cgs_conf'),
)