Skip to content

Commit

Permalink
Update urls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
menckend authored Oct 30, 2024
1 parent ec83cf8 commit 89b5a9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions netbox_rpki/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
path('certificates/', views.RpkiCertificateListView.as_view(), name='rpkicertificate_list'),
path('certificates/add/', views.RpkiCertificateEditView.as_view(), name='rpkicertificate_add'),
path('certificates/<int:pk>/', views.RpkiCertificateView.as_view(), name='rpkicertificate'),
# path('certificates/<int:pk>/edit/', views.RpkiCertificateEditView.as_view(), name='rpkicertificate_edit'),
# path('certificates/<int:pk>/delete/', views.RpkiCertificateDeleteView.as_view(), name='rpkicertificate_delete'),
# path('certificates/<int:pk>/', include(get_model_urls('netbox_rpki', 'rpkicertificate'))),
path('certificates/<int:pk>/edit/', views.RpkiCertificateEditView.as_view(), name='rpkicertificate_edit'),
path('certificates/<int:pk>/delete/', views.RpkiCertificateDeleteView.as_view(), name='rpkicertificate_delete'),
path('certificates/<int:pk>/', include(get_model_urls('netbox_rpki', 'rpkicertificate'))),
]

0 comments on commit 89b5a9d

Please sign in to comment.