mybuddy/core/views.py

9 lines
187 B
Python
Raw Normal View History

2017-08-15 19:14:03 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.views.generic.base import TemplateView
class IndexView(TemplateView):
template_name = 'core/index.html'