Skip to content
Snippets Groups Projects
Commit ce8bd14f authored by jarmil's avatar jarmil Committed by jan.bednarik
Browse files

Weby MS: Nahodny vyber lidi na strance detailu osoby

parent 7cd82004
No related branches found
No related tags found
2 merge requests!173Release,!134Weby pro MS
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 = []
......
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