- Timestamp:
- 03/04/10 04:44:49 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Products.ATGoogleMaps/trunk/Products/ATGoogleMaps/skins/ATGoogleMaps/gmap_view.pt
r287 r288 34 34 35 35 <!-- gmarker --> 36 <ul tal:define="markers python: context.objectValues(['GMarker'])"> 37 <tal:gmarker tal:repeat="marker markers"> 38 <li id="" 39 tal:define="mid marker/id;" 40 tal:condition="marker/point | nothing" 41 tal:attributes="id string:infowindow_link_${mid}"> 42 <a href="javascript:void(0)" onclick="this.blur()" tal:content="marker/pretty_title_or_id"> 43 Gmarker title 44 </a> 45 <!-- info window --> 36 <ul tal:define="folderContents context/getFolderContents"> 37 <tal:entry tal:repeat="item folderContents"> 38 <tal:block tal:define="marker item/getObject; 39 item_id item/getId|item/id; 40 item_title_or_id item/pretty_title_or_id; 41 item_wf_state item/review_state|python: wtool.getInfoFor(item, 'review_state', ''); 42 item_wf_state_class python:'state-' + normalizeString(item_wf_state); 43 "> 44 <li id="" 45 tal:attributes="id string:infowindow_link_${item_id}"> 46 <a href="javascript:void(0)" 47 onclick="this.blur()" 48 tal:content="item_title_or_id" 49 tal:attributes="class string:${item_wf_state_class}"> 50 Marker title 51 </a> 46 52 <div id="" style="display: none;" 47 tal:attributes="id string:infowindow_html_${ mid}">53 tal:attributes="id string:infowindow_html_${item_id}"> 48 54 <h2 class="documentFirstHeading"> 49 55 <metal:field use-macro="python:marker.widget('title', mode='view')"> … … 100 106 </ul> 101 107 </div> 102 103 108 </div> 104 </li> 105 </tal:gmarker> 109 </li> 110 </tal:block> 111 </tal:entry> 106 112 </ul> 107 113
Note: See TracChangeset
for help on using the changeset viewer.
