Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/backend/banner/list.php
		<!-- ui-dialog -->
		<div id="dialog" title="Potwierdzenie" style="display: none;">
			<p>Czy na pewno chcesz usunąć ?</p>
		</div> 	

		<!--  start table-content  -->
			<div id="table-content">
				<?php echo Message::render(); ?>
				
		
		 
				<!--  start product-table ..................................................................................... -->
				<form id="mainform" action="" method="post">
				<table border="0" width="100%" cellpadding="0" cellspacing="0" id="product-table">
				<tr>
					<th class="table-header-check"><a id="toggle-all" ></a> </th>
					<th class="table-header-repeat line-left minwidth-1"><a href="">Tytuł</a>	</th>
					<th class="table-header-repeat line-left minwidth-2"><a href="">Link</a></th>
					<th class="table-header-repeat line-left minwidth-3"><a href="">Od</a></th>
					<th class="table-header-repeat line-left minwidth-4"><a href="">Do</a></th>
					<th class="table-header-repeat line-left minwidth-5"><a href="">Type</a></th>
					<th class="table-header-options line-left"><a href="">Options</a></th>
				</tr>
				<?php $n = 0; foreach( $data as $item ) : $n++; ?>
				
				<?php echo (( $n % 2 ) == 0 ) ? '<tr>' : '<tr class="alternate-row">'; ?>
				
					<td><input  type="checkbox"/></td>
					
					<td><?php echo $item->banner_name; ?></td>
					
					<td><?php echo $item->banner_href; ?></td>
					
					<td><?php echo $item->banner_date_from; ?></td>
					
					<td><?php echo $item->banner_date_to; ?></td>
					
					<td><?php echo $item->type; ?></td>
				
					<td class="options-width">
					
					<a href="./banner/edit/<?php echo $item->banner_id; ?>" title="Edit" class="icon-1 info-tooltip"></a>
					
					<a href="./banner/delete/<?php echo $item->banner_id; ?>" id="dialog_link_<?php echo $item->banner_id; ?>" title="Delete" class="icon-2 info-tooltip" ></a>
		
					</td>
				</tr>
				<?php endforeach; ?>
				
				</table>
				<!--  end product-table................................... --> 
				</form>
			</div>
			<!--  end content-table  -->
		
			<!--  start actions-box ............................................... -->
			<div id="actions-box">
				<a href="" class="action-slider"></a>
				<div id="actions-box-slider">
					<a href="" class="action-edit">Edit</a>
					<a href="" class="action-delete">Delete</a>
				</div>
				<div class="clear"></div>
			</div>
			<!-- end actions-box........... -->
			
			<!--  start paging..................................................... -->
			<?php if( !is_null($pagination)) echo $pagination->render(); ?>
			<!--  end paging................ -->
			
			<div class="clear"></div>