X-Git-Url: https://svn.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/416df04821b815a2df5c4d0e669d395d095227f7..69001494261054fc5bd36da7a77db57a9b779c7e:/skins/photo_layout_macros.pt?ds=sidebyside diff --git a/skins/photo_layout_macros.pt b/skins/photo_layout_macros.pt index 6354b1a..c096822 100644 --- a/skins/photo_layout_macros.pt +++ b/skins/photo_layout_macros.pt @@ -25,7 +25,7 @@ alt info/title; height size/height; width size/width; - style string:margin-top : ${margin_top}px ;;margin-left:${margin_left}px;"/> + style string:margin-top:${margin_top}px;; margin-left:${margin_left}px;"/> </a> <tal:block tal:condition="python:features.has_key('select')"> <span class="button slide-select" tal:condition="not:selected"> @@ -104,9 +104,12 @@ <noscript> <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div> </noscript> - <script type="text/javascript" tal:condition="not:dropable"> - new Lightbox(document.getElementById('lightbox'), - document.getElementById('lightbox_toolbar')); + <script type="text/javascript" tal:condition="not:dropable" + tal:content="structure python:''' + new Lightbox(document.getElementById('lightbox'), + document.getElementById('lightbox_toolbar'), + %s); + ''' % ('true' if not batch.next else 'false')"> </script> <script type="text/javascript" tal:condition="dropable" @@ -114,7 +117,8 @@ (function(){ var lb = document.getElementById('lightbox'); new Lightbox(lb, - document.getElementById('lightbox_toolbar')); + document.getElementById('lightbox_toolbar'), + %(complete)s); var uploadUrl = '%(putUrl)s'; var options = {'slideSize' : %(slideSize)d, 'thumbnailSize' : %(thumbnailSize)d}; @@ -122,20 +126,23 @@ })(); ''' % {'putUrl' : '%s/put_upload' % here.absolute_url(), 'slideSize' : portal_object.slide_size, - 'thumbnailSize' : portal_object.thumb_size}"> + 'thumbnailSize' : portal_object.thumb_size, + 'complete': 'true' if not batch.next else 'false'}"> </script> </div> <div metal:define-macro="film_bar" tal:omit-tag=""> <div id="film_bar"> <table cellspacing="0"> - <tr tal:define="slide_size python:portal_object.thumb_size/2 + 10"> + <tr tal:define="slide_size python:portal_object.thumb_size/2 + 10; + blank_img string:$portal_url/transparent.gif"> <td tal:repeat="info contextInfos/infos"> <a tal:attributes="href info/href; + title info/title; class info/className; - portfolio:position info/index"> + portfolio:position info/index;"> <img tal:define="size info/thumbSize; margin_top python:(slide_size - size['height']) / 2" - tal:attributes="src info/src; + tal:attributes="src python:info['src'] if info['displayed'] else blank_img; alt info/title; height size/height; width size/width;