Skip to content
Snippets Groups Projects
Commit c1138859 authored by sks444's avatar sks444
Browse files

Remove redundent inheritance of FundingMixin to partners page

parent 08fe473e
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ from wagtail.images.edit_handlers import ImageChooserPanel
from wagtail.search import index
from hypha.apply.funds.models import ApplicationSubmission
from hypha.public.utils.models import BasePage, FundingMixin
from hypha.public.utils.models import BasePage
class PartnerIndexPage(BasePage):
......@@ -32,7 +32,7 @@ class PartnerIndexPage(BasePage):
return redirect('investments')
class PartnerPage(FundingMixin, BasePage):
class PartnerPage(BasePage):
STATUS = [
('active', 'Active'),
('inactive', 'Inactive')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment