2014-05-09 10:34:00 +00:00
< div class = "heading clearfix" >
< h2 class = "pull-left" > Photo Manager< / h2 >
{include file="$layout_dir/blocks/advanced_photo_search.html" }
< / div >
2014-01-22 14:01:31 +00:00
< form name = "photo_manager" method = "post" >
2014-05-09 10:34:00 +00:00
< div class = "btn-group marginBottom" >
2014-04-04 11:43:42 +00:00
< input type = "submit" name = "make_featured_selected" value = "Make Featured" class = "btn btn-primary btn-xs" / >
< input type = "submit" name = "make_unfeatured_selected" value = "Make Unfeatured" class = "btn btn-primary btn-xs" / >
2014-05-06 13:36:47 +00:00
< input type = "submit" name = "delete_selected" value = "Delete" class = "btn btn-primary btn-xs" onclick = "return confirm_it('Are you sure you want to delete selected photos(s). This will permanently delete these photos from website.')" / >
2014-01-22 14:01:31 +00:00
< / div >
2014-04-15 13:18:13 +00:00
< table class = "table table-bordered table-striped manageUsersTable" >
< tr >
< td >
< input type = "checkbox" name = "checkall" onclick = "checkUncheckAll(this);" / > < / td >
< td > PID< / td >
< td > Photo Details< / td >
< td > < / td >
< / tr >
2014-01-22 14:01:31 +00:00
{if $photos}
{section name=list loop=$photos}
< tr >
< td class = "moveL PhotoCheckBox" >
2014-04-15 13:18:13 +00:00
< div >
2014-01-22 14:01:31 +00:00
< input name = "check_photo[]" type = "checkbox" id = "check_photo" value = "{$photos[list].photo_id}" / >
< / div >
< / td >
< td > {$photos[list].photo_id}< / td >
< td >
2014-04-04 11:43:42 +00:00
< div class = "row" >
< div class = "col-md-10" >
< div class = "row" >
< div class = "col-md-3" >
{get_photo details=$photos[list] id='photo' style='padding:2px; border:1px solid #ccc' output='html'}
< / div >
< div class = "col-md-9" >
< a class = "block" href = "{$baseurl}/admin_area/edit_photo.php?photo={$photos[list].photo_id}" > {$photos[list].photo_title}< / a >
< span class = "labels1" > < strong > {$photos[list].date_added|niceTime}< / strong >
{lang code='views'} : < strong > {$photos[list].views|number_format}< / strong > < / span >
< div class = "labels" >
{if $photos[list].featured=='yes'}< span class = "label label-primary" > Featured{else}{/if}< / span >
2014-04-18 06:34:24 +00:00
< span class = "label {if $photos[list].active=='yes'}label-success{else}label-warning{/if}" >
{if $photos[list].active=='yes'}Active{else}InActive{/if} < / span >
2014-04-04 11:43:42 +00:00
< span class = "label label-info" >
Viewed {$photos[list].last_viewed|niceTime}< / span >
< / div >
< / div >
< / div >
< / div >
< div class = "col-md-2" >
< a href = "view_user.php?uid={$photos[list].userid}" > {$photos[list].username}< / a >
2014-01-22 14:01:31 +00:00
< / div >
< / div >
2014-04-04 11:43:42 +00:00
<!-- <div class="row"> -->
<!-- <div class="AdminPhotoThumb col - md - 3"> -->
<!-- </div> -->
<!-- <div class="col - md - 9"> -->
<!-- <div class="vdo_sets"> -->
<!-- <h4> -->
<!-- </h4> -->
<!-- <span class="label">Featured:<strong>{$photos[list].featured} </strong></span> -->
<!-- <span class="label"> -->
<!-- {if $photos[list].collection_id} -->
<!-- Collection:<strong><a title="Edit Collection" href="edit_collection.php?collection={$photos[list].collection_id}">{$photos[list].collection_id|get_collection_field}</a></strong> -->
<!-- {else} -->
<!-- Photo is Orphan -->
<!-- {/if} -->
<!-- </span> -->
<!-- <span class="label"> -->
<!-- Uploaded:<strong>{$photos[list].date_added|niceTime}</strong> -->
<!-- </span> -->
<!-- <span class="label"> -->
<!-- User:<strong><a href="view_user.php?uid={$photos[list].userid}">{$photos[list].username}</a></strong> -->
<!-- </span> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
2014-01-22 14:01:31 +00:00
< / td >
< td >
2014-04-04 11:43:42 +00:00
2014-04-04 12:49:04 +00:00
2014-01-22 14:01:31 +00:00
< div class = "dropdown" >
< button class = "btn btn-primary btn-xs dropdown-toggle" id = "dropdownMenu1" data-toggle = "dropdown" > Actions< i class = "icon-angle-down icon-on-right" > < / i > < / button >
2014-04-04 12:49:04 +00:00
< ul class = "dropdown-menu pull-right" role = "menu" aria-labelledby = "dropdownMenu1" >
2014-04-18 06:41:01 +00:00
< li >
{if $photos[list]['active'] == 'yes'}
< a href = "?deactivate={$photos[list].photo_id}" > Deactivate< / a >
{else}
< a href = "?activate={$photos[list].photo_id}" > Activate< / a >
{/if}
< / li >
2014-01-22 14:01:31 +00:00
< li >
< a href = "edit_photo.php?photo={$photos[list].photo_id}" > Edit< / a >
< / li >
< li >
< a href = "{$baseurl}/view_item.php?item={$photos[list].photo_key}&type=photos&collection={$photos[list].collection_id}" target = "_blank" > View< / a >
< / li >
2014-04-04 12:49:04 +00:00
{if $photos[list].featured == 'yes'}
2014-01-22 14:01:31 +00:00
< li >
< a href = "?make_unfeature={$photos[list].photo_id}" > Make Unfeatured< / a >
< / li >
{/if}
2014-04-04 12:49:04 +00:00
{if $photos[list].featured == 'no'}
2014-01-22 14:01:31 +00:00
< li >
< a href = "?make_feature={$photos[list].photo_id}" > Make Featured< / a >
< / li >
{/if}
2014-04-07 11:17:19 +00:00
< li > < a role = "menuitem" tabindex = "-1" id = "delete-{$photos[list].photo_id}" href = "?delete_photo={$photos[list].photo_id}" > Delete< / a > < / li >
2014-01-22 14:01:31 +00:00
< / ul >
< / div >
< / td >
< / tr >
{/section}
< / table >
< div class = "btn-group" >
2014-04-04 11:43:42 +00:00
< input type = "submit" name = "move_to_selected" value = "Move To" class = "btn btn-primary btn-xs" / >
< input type = "submit" name = "make_featured_selected" value = "Make Featured" class = "btn btn-primary btn-xs" / >
< input type = "submit" name = "make_unfeatured_selected" value = "Make Unfeatured" class = "btn btn-primary btn-xs" / >
2014-05-06 13:36:47 +00:00
< input type = "submit" name = "delete_selected" value = "Delete" class = "btn btn-primary btn-xs" onclick = "return confirm_it('Are you sure you want to delete selected photos(s)')" / >
2014-01-22 14:01:31 +00:00
< / div >
{else}
< div align = "center" > < strong > < em > No Photo Found< / em > < / strong > < / div >
{/if}
2014-04-04 11:43:42 +00:00
{include file="$style_dir/blocks/pagination.html" }
< / form >