Moved ungleich landing into django
This commit is contained in:
parent
1469f077bd
commit
5a04fc4969
154 changed files with 19044 additions and 1 deletions
|
|
@ -3,9 +3,14 @@ from django.contrib import messages
|
|||
from django.views.generic.edit import FormView
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
from django.core.urlresolvers import reverse_lazy
|
||||
from django.views.generic import TemplateView
|
||||
from utils.forms import ContactUsForm
|
||||
|
||||
|
||||
class LandingView(TemplateView):
|
||||
template_name = "ungleich_page/landing.html"
|
||||
|
||||
|
||||
class ContactView(FormView):
|
||||
template_name = 'ungleich_page/contact.html'
|
||||
form_class = ContactUsForm
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue