# -*- coding: utf-8 -*- from django.http import HttpResponseRedirect, HttpResponse #models from functions.custom_views import ExpoListView, ExpoMixin, EventDetail from django.views.generic import ListView, DetailView from haystack.query import EmptySearchQuerySet from functions.search_forms import ExpositionSearchForm from django.views.generic import FormView, TemplateView from event_forms import AddEventForm1 # import json from django.utils.translation import ugettext as _ class AddEventView(FormView): template_name = 'organiser/add_event.html' form_class = AddEventForm1