clipbucket/upload/styles/cbv2new/layout/view_item.html
Fawaz 65bf47b8bb Updated : main.css
Added : user account files for photos and collections
Added : function add onReload() in head.html
Updated : photo_upload.html
Updated : view_collection.html
Updated : view_item.html to more simple page
Added : view_photo.html
Updated : watch_video.html. Displayed Collection form
Updated : collections.class.php
Added : new smarty functions
Added : Photo Download
Added : New function updateObjectStats
Added : Photo Comment case
Added : orphan_photos.php
Fixed : Admin photo settings
Updated : photo_uploader.php
Updated : photo.class.php
2010-12-23 16:56:33 +00:00

26 lines
No EOL
1.4 KiB
HTML

<div id="collectionItemView"> <!-- this div is required for Ajax to work properly -->
<div style="width:65%; margin-left:10px;" class="moveL">
<div style="font:bold 11px Tahoma; padding:6px 0px; margin-bottom:5px;">
<a href="{$baseurl}" style="text-decoration:none;">{lang code="Home"}</a> &raquo; <a href="{$cbcollection->collection_links($object.collection_id,'main')}" style="text-decoration:none;">{lang code="Collections"}</a> &raquo; <a href="{$cbcollection->collection_links($object.collection_id,'view')}" style="text-decoration:none;">{$object.collection_id|get_collection_field}</a>
</div>
</div>
<div class="moveR" style="width:30%; margin-right:10px;">
<div class="NextPrevButtons clearfix">
<li class="moveL">
<a href="javascript:void(0)" onClick="get_item(this,'{$object.ci_id}','{$object.collection_id}','{$type}','prev');">Previous</a>
</li>
<li class="moveR">
<a href="javascript:void(0)" onClick="get_item(this,'{$object.ci_id}','{$object.collection_id}','{$type}','next');">Next</a>
</li>
</div>
</div>
<div class="clearfix"></div>
{if $type == 'photos'}
{include file="$style_dir/view_photo.html" photo=$object user=$user}
{/if}
{if $type == 'videos'}
{include file="$style_dir/watch_video.html" vdo=$object user=$user}
{/if}
</div>