citavi_mapper/hello/views.py

11 lines
250 B
Python
Raw Normal View History

2014-07-25 13:53:01 +02:00
# -*- coding: utf-8 -*-
from django.http import HttpResponse
2014-07-25 13:53:01 +02:00
from django.views.generic import TemplateView
from django.views.generic import FormView
2014-07-25 13:53:01 +02:00
class Hello(TemplateView):
template_name = "hello.html"
class FormTest(FormView):
pass