2014-07-25 13:53:01 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2014-07-25 11:20:10 +02:00
|
|
|
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 11:20:10 +02:00
|
|
|
|
2014-07-25 13:53:01 +02:00
|
|
|
class Hello(TemplateView):
|
|
|
|
template_name = "hello.html"
|
|
|
|
|
|
|
|
class FormTest(FormView):
|
|
|
|
pass
|