-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rendering EOY banner on donate pages (#13307)
* rendering eoy banner on donate pages * removed redundant img rule
- Loading branch information
1 parent
d676a32
commit 455a6d3
Showing
2 changed files
with
5 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
from wagtail.models import Page | ||
from networkapi.wagtailpages.pagemodels.base import BasePage | ||
|
||
from networkapi.wagtailpages.models import FoundationMetadataPageMixin | ||
from networkapi.wagtailpages.pagemodels.mixin.foundation_navigation import ( | ||
FoundationNavigationPageMixin, | ||
) | ||
|
||
|
||
class BaseDonationPage(FoundationMetadataPageMixin, FoundationNavigationPageMixin, Page): | ||
class BaseDonationPage(BasePage): | ||
class Meta: | ||
abstract = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters