mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-31 00:53:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			240 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			240 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import url, include
 | |
| 
 | |
| from election.views import *
 | |
| 
 | |
| urlpatterns = [
 | |
|     url(r'^$', ElectionsListView.as_view(), name='list'),
 | |
|     url(r'^(?P<election_id>[0-9]+)/detail$', ElectionDetailView.as_view(), name='detail'),
 | |
| ]
 |