From ed098af94222e02a6bf8fe14ec6a7a522d9371e7 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Fri, 23 Feb 2018 16:39:35 +0000 Subject: [PATCH] Fix an issue with rebase --- opentech/apply/funds/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opentech/apply/funds/views.py b/opentech/apply/funds/views.py index b8ab639f4..6068b7cca 100644 --- a/opentech/apply/funds/views.py +++ b/opentech/apply/funds/views.py @@ -2,12 +2,12 @@ from django import forms from django.template.response import TemplateResponse from django.views.generic import DetailView -from .workflow import SingleStage, DoubleStage - from django_filters.views import FilterView from django_tables2.views import SingleTableMixin +from .models import ApplicationSubmission from .tables import SubmissionsTable, SubmissionFilter, SubmissionFilterAndSearch +from .workflow import SingleStage, DoubleStage class SubmissionListView(SingleTableMixin, FilterView): -- GitLab