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
Container Registry
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
TO
Maják
Commits
ee38358f
Commit
ee38358f
authored
4 years ago
by
jarmil
Browse files
Options
Downloads
Patches
Plain Diff
REF: msweby: introduced ArticleMixin
parent
34d456a8
No related branches found
No related tags found
2 merge requests
!173
Release
,
!134
Weby pro MS
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
shared/models.py
+11
-9
11 additions, 9 deletions
shared/models.py
with
11 additions
and
9 deletions
shared/models.py
+
11
−
9
View file @
ee38358f
...
...
@@ -35,14 +35,14 @@ class ArticleTag(TaggedItemBase):
content_object
=
ParentalKey
(
"
shared.Article
"
,
on_delete
=
models
.
CASCADE
)
class
Article
(
SharedSubpageMixin
,
MetadataPageMixin
,
Page
):
"""
Univerzalni clanek pro vsechny weby
"""
### FIELDS
class
ArticleMixin
(
models
.
Model
):
"""
Spolecna pole vsech clanku
"""
perex
=
models
.
CharField
(
"
perex
"
,
max_length
=
250
,
blank
=
True
)
text
=
models
.
TextField
(
"
text článku
"
,
blank
=
True
)
date
=
models
.
DateField
(
"
datum článku
"
,
blank
=
False
,
default
=
datetime
.
datetime
.
now
)
tags
=
ClusterTaggableManager
(
through
=
ArticleTag
,
blank
=
True
)
image
=
models
.
ForeignKey
(
"
wagtailimages.Image
"
,
on_delete
=
models
.
PROTECT
,
...
...
@@ -50,7 +50,6 @@ class Article(SharedSubpageMixin, MetadataPageMixin, Page):
null
=
True
,
verbose_name
=
"
obrázek
"
,
)
tags
=
ClusterTaggableManager
(
through
=
ArticleTag
,
blank
=
True
)
author
=
models
.
ForeignKey
(
"
shared.PersonPage
"
,
verbose_name
=
"
Autor článku
"
,
...
...
@@ -59,7 +58,13 @@ class Article(SharedSubpageMixin, MetadataPageMixin, Page):
blank
=
True
,
)
### PANELS
class
Meta
:
abstract
=
True
verbose_name
=
"
Článek
"
class
Article
(
ArticleMixin
,
Page
,
SharedSubpageMixin
,
MetadataPageMixin
):
"""
Univerzalni clanek pro vsechny weby
"""
content_panels
=
Page
.
content_panels
+
[
FieldPanel
(
"
perex
"
),
...
...
@@ -73,9 +78,6 @@ class Article(SharedSubpageMixin, MetadataPageMixin, Page):
FieldPanel
(
"
tags
"
),
]
class
Meta
:
verbose_name
=
"
Článek
"
class
PersonPage
(
SharedSubpageMixin
,
MetadataPageMixin
,
Page
):
"""
Stranka Pirata.
...
...
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