mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 11:03:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			187 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			187 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.conf.urls import url, include
 | 
						|
 | 
						|
from subscription.views import *
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    # Subscription views
 | 
						|
    url(r'^$', NewSubscription.as_view(), name='subscription'),
 | 
						|
]
 | 
						|
 | 
						|
 | 
						|
 |