mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-31 15:50:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			335 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			335 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2018-2025 by BDE ENS Paris-Saclay
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| from django.urls import path
 | |
| 
 | |
| from . import views
 | |
| 
 | |
| app_name = 'wrapped'
 | |
| 
 | |
| urlpatterns = [
 | |
|     path('', views.WrappedListView.as_view(), name='wrapped_list'),
 | |
|     path('<int:pk>/', views.WrappedDetailView.as_view(), name='wrapped_detail'),
 | |
| ]
 |