32 lines
1.1 KiB
Python
Raw Normal View History

2013-09-28 12:06:26 +02:00
# -*- coding: utf-8 -*-
from django.views.generic import TemplateView
from django.http import HttpResponse
from django.conf import settings
from main.forms import *
2013-09-28 12:06:26 +02:00
class HomeView(TemplateView):
template_name = "base.html"
def get_context_data(self, *args, **kwargs):
context = super(HomeView, self).get_context_data(*args, **kwargs)
context['nav_home'] = True
return context
2013-09-28 16:46:33 +02:00
class OverviewView(TemplateView):
2013-09-28 14:26:00 +02:00
template_name = "main/overview.html"
def get_context_data(self, *args, **kwargs):
context = super(OverviewView, self).get_context_data(*args, **kwargs)
context['nav_overview'] = True
context['WWW_IPV4_HOST'] = settings.WWW_IPV4_HOST
context['WWW_IPV6_HOST'] = settings.WWW_IPV6_HOST
2013-09-28 19:01:40 +02:00
context['session'] = self.request.session
context['HostForm'] = HostForm(self.request.POST)
if self.request.method == "POST":
form = HostForm(self.request.POST)
if form.is_valid():
host = form.create_host()
host.save()
return context