<?php
$id = '';
$img ='';
$imgAlt = '';
$gallery = '';

if( gettype($this->image)=='object' &&   get_class($this->image)=='Gallery_Model_Gallery_Image_Row' ){
    
    
    $id = $this->image->id ;
    $img = $this->image->getImage();
    $imgAlt =   $this->image->name;
    $gallery =  $this->image->gallery;
}

?>

<li class="image" id="img_<?= $id?>" wz:id="<?= $id ?>">
                   
               
                
		<img src="<?= $img; ?>"  width="175" alt="<?= $imgAlt;?>" />
                        
                        
		<strong><?= $imgAlt?></strong>
		<div class="buttons">
			<a class="action edit" href="<?= $this->url(array('action'=>'save','gallery'=>$gallery,'id'=>$id),'gallery-images-admin',true) ?>"><span class="edit"><?= $this->translate('#edit#') ?></span></a>
			<a class="action delete" href="<?= $this->url(array('action'=>'delete','id'=>$id),'gallery-images-admin',true) ?>" ><span class="delete"><?= $this->translate('#delete#') ?></span></a>
		</div>
	</li>