Chargement des vignettes après coup pour les tables lumineuses.
[Portfolio.git] / skins / portfolio_thumbnails_tail.py
index 4f47bf3..9765629 100644 (file)
@@ -1,6 +1,11 @@
-##parameters=start=0, size=10
+##parameters=start=0, size=10, container_type='portfolio'
 options={}
-options.update(context.getPhotosInfos(context,
-                                      pho_start=start,
-                                      batch_size=size))
+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))
 return context.portfolio_thumbnails_tail_template(**options)
\ No newline at end of file