mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			232 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			232 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Create your views here.
 | 
						|
from django.views.generic import TemplateView
 | 
						|
 | 
						|
from core.auth.mixins import FormerSubscriberMixin
 | 
						|
 | 
						|
 | 
						|
class GeneratorView(FormerSubscriberMixin, TemplateView):
 | 
						|
    template_name = "timetable/generator.jinja"
 |