12 lines
		
	
	
		
			286 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			286 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.utils.translation import gettext_lazy as _
 | 
						|
from django.views.generic import TemplateView
 | 
						|
 | 
						|
from aircox.views.admin import AdminMixin
 | 
						|
 | 
						|
 | 
						|
class StreamerAdminMixin(AdminMixin, TemplateView):
 | 
						|
    template_name = 'aircox_streamer/streamer.html'
 | 
						|
    title = _('Streamer Monitor')
 | 
						|
 | 
						|
 |