mirror of https://github.com/snachodog/mybuddy.git
9 lines
187 B
Python
9 lines
187 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.views.generic.base import TemplateView
|
||
|
|
||
|
|
||
|
class IndexView(TemplateView):
|
||
|
template_name = 'core/index.html'
|