5 lines
194 B
Python
5 lines
194 B
Python
|
from django.views.generic import TemplateView
|
||
|
from project.common.views import CustomHeaderBG
|
||
|
|
||
|
class StudentServerView(CustomHeaderBG.Template):
|
||
|
template_name = 'college/student-server.html'
|