X-Git-Url: https://scm.cri.minesparis.psl.eu/git/Portfolio.git/blobdiff_plain/f21f382e9b2de5862e6cbb82c856b8a1c8c6c481..17094a1109d383befd9b700262a8237e11e64543:/skins/portfolio_thumbnails_tail.py

diff --git a/skins/portfolio_thumbnails_tail.py b/skins/portfolio_thumbnails_tail.py
index 819e759..8e77386 100644
--- a/skins/portfolio_thumbnails_tail.py
+++ b/skins/portfolio_thumbnails_tail.py
@@ -1,4 +1,14 @@
-##parameters=start=0, size=10
+##parameters=start=0, size=10, container_type='portfolio'
 options={}
-options.update(context.getPhotosInfos(context))
+if container_type == 'portfolio' :
+    options.update(context.getPhotosInfos(context,
+                                          pho_start=start,
+                                          batch_size=size))
+elif container_type == 'lightbox' :
+    options.update(context.getLightboxPhotosInfos(context,
+                                          pho_start=start,
+                                          batch_size=size))
+elif container_type == 'selection' :
+    options.update(context.getSelectionPhotosInfos(pho_start=start,
+                                                   batch_size=size))
 return context.portfolio_thumbnails_tail_template(**options)
\ No newline at end of file