clipbucket/upload/styles/cbv2new/layout/photo_upload.html

26 lines
1,005 B
HTML
Raw Normal View History

<div class="content_con clearfix">
<div class="upload_info">
{if $step == 1 || $step == ""}
<h2>Select Photo Files</h2>
{loadPhotoUploadForm buttonClass='LoadMoreButton moveR'}
{/if}
{if $step == 2}
<h2>Enter Information</h2>
{foreach item=item from=$photos}
{include file="$style_dir/blocks/upload/photo_form.html" photo=$item}
{/foreach}
<button class="LoadMoreButton clearfix" onclick="callAjax(this);" type="button" name="insertPhotos" id="insertPhotos">Save All</button>
{/if}
{if $step == 3}
<div class="photoBox">
<div style="background:#FFF; text-align:center; border-bottom:1px solid #ccc; color:#666; padding:8px; font:bold 14px Arial;">{lang code="photo_success_heading"}</div>
<div class="clearfix" style="padding:8px; font:normal 11px Tahoma;">
You can manage your photos from <strong><a href="{link name='manage_photos'}">{lang code='manage_photos'}</a></strong>.
</div>
</div>
{/if}
</div>
</div>