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
ce8bd14f
Commit
ce8bd14f
authored
4 years ago
by
jarmil
Committed by
jan.bednarik
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Weby MS: Nahodny vyber lidi na strance detailu osoby
parent
7cd82004
No related branches found
Branches containing commit
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
+7
-6
7 additions, 6 deletions
shared/models.py
with
7 additions
and
6 deletions
shared/models.py
+
7
−
6
View file @
ce8bd14f
import
random
import
requests
import
requests_cache
from
django.db
import
models
...
...
@@ -127,17 +129,16 @@ class PersonPage(SharedSubpageMixin, MetadataPageMixin, Page):
def
get_context
(
self
,
request
):
context
=
super
().
get_context
(
request
)
# Na strance detailu cloveka se vpravo zobrazuji 3 dalsi nahodne profily
# TODO udelat nahodny vyber
context
[
"
random_people
"
]
=
(
self
.
get_siblings
(
inclusive
=
False
).
type
(
PersonPage
).
live
().
specific
()[:
2
]
context
[
"
random_people
"
]
=
list
(
self
.
get_siblings
(
inclusive
=
False
).
type
(
PersonPage
).
live
().
specific
()
)
random
.
shuffle
(
context
[
"
random_people
"
])
context
[
"
random_people
"
]
=
context
[
"
random_people
"
][:
3
]
return
context
class
PeoplePage
(
SharedSubpageMixin
,
MetadataPageMixin
,
Page
):
"""
Stranka se zobrazenim lidi v dane organizaci
TOOD: subpagemixin
"""
"""
Stranka se zobrazenim lidi v dane organizaci
"""
settings_panels
=
[]
...
...
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