# -*- coding: utf-8 -*- from django.http import HttpResponseRedirect, HttpResponse from models import Photoreport from functions.custom_views import ExpoListView import json from django.utils.translation import ugettext as _ class PhotoreportView(ExpoListView): model = Photoreport template_name = 'photoreport_catalog.html'