Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Maják
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hemp
Maják
Commits
9f87632a
Commit
9f87632a
authored
4 years ago
by
jarmil
Browse files
Options
Downloads
Patches
Plain Diff
WIP: PDP: FIX: subpage mixin
parent
8f15e9e5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pdp/models.py
+2
-2
2 additions, 2 deletions
pdp/models.py
shared/mixins.py
+12
-0
12 additions, 0 deletions
shared/mixins.py
with
14 additions
and
2 deletions
pdp/models.py
+
2
−
2
View file @
9f87632a
...
...
@@ -12,7 +12,7 @@ from wagtail.documents.blocks import DocumentChooserBlock
from
wagtail.images.edit_handlers
import
ImageChooserPanel
from
wagtailmetadata.models
import
MetadataPageMixin
from
shared.mixins
import
MatomoMixin
from
shared.mixins
import
MatomoMixin
,
SharedSubpageMixin
from
tuning
import
help
from
uniweb
import
models
as
uniweb
...
...
@@ -85,7 +85,7 @@ class PdpHomePage(
return
self
class
PdpSubPage
(
Page
,
PdpContentMixin
,
uniweb
.
SubpageMixin
,
MetadataPageMixin
):
class
PdpSubPage
(
Page
,
PdpContentMixin
,
Shared
SubpageMixin
,
MetadataPageMixin
):
### FIELDS
### PANELS
...
...
This diff is collapsed.
Click to expand it.
shared/mixins.py
+
12
−
0
View file @
9f87632a
...
...
@@ -9,3 +9,15 @@ class MatomoMixin(models.Model):
class
Meta
:
abstract
=
True
class
SharedSubpageMixin
:
"""
Must be used in class definition before MetadataPageMixin!
"""
@property
def
root_page
(
self
):
if
not
hasattr
(
self
,
"
_root_page
"
):
# Vypada to hackove ale lze takto pouzit: dle dokumentace get_ancestors vraci stranky v poradi
# od rootu, tedy domovska stranka je druha v poradi
self
.
_root_page
=
self
.
get_ancestors
().
specific
()[
1
]
return
self
.
_root_page
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment