Current File : /home/karenpetzb/application/modules/backoffice/views/scripts/product/keywordsengine.phtml
 <div class="table-box">
	<form method="POST" action="<?php  echo $this->baseUrl; ?>/backoffice/product/addkeywordsengine">
	<table class="table">
		<thead>
			<tr>
				<th class="col-md-4" colspan="2"><?php echo $this->titlePage; ?></th>
			</tr>
		</thead>
		<tbody>
			<?php echo $this->render("alert_tr.phtml"); ?>
			<tr class="nostriped">
				<td class="col-md-4"><i class="glyphicon glyphicon-asterisk"></i>&nbsp;Mot cl�</td>
				<td class="col-md-8"><input type="text" class="form-control" size="60" name="keyword" id="keyword" placeholder="Ajouter un mot cl� pour la barre de recherche"></td>
			</tr>
			<tr class="nostriped">
				<td colspan="2" class="text-center">
					<button class="btn btn-success" type="submit" name="add"><i class="glyphicon glyphicon-plus"></i>&nbsp;Ajouter</button>
					<a class="button" style="display:none" href="<?php  echo $this->baseUrl; ?>/backoffice/product/keywordsenginereset">Reset</a>
				</td>
			</tr>
		</tbody>
	</table>
	</form>
</div>
<div class="clearfix"></div>

<div class="table-box">
<?php echo $this->paginationControl($this->paginator, 'All', 'pagination.phtml'); ?>
<table class="display table" id="keywordTable" width="100%">
	<thead>
		<tr>
			<th>Mot cl�</th>
		</tr>
	</thead>
	<tbody>
		<?php foreach($this->paginator as $row)  { ?>
		<tr >
			<td>
				<form action="<?php  echo $this->baseUrl; ?>/backoffice/product/editkeywordsengine" method="post">
				<div class="col-md-8 no-space-top">
					<input class="form-control" type="text" size="40" name="keyword" value="<?php echo $this->escape($row['KEYWORD']);?>">
				</div>
				<div class="col-md-4 no-space-top">
					<input type="hidden" value="<?php echo $row['ID']; ?>" name="keyword_id">
					<input type="hidden" value="<?php echo  $this->paginator->getCurrentPageNumber(); ?>" name="page">
					<div class="btn-group">
						<button class="btn btn-success" type="submit" name="add"><i class="glyphicon glyphicon-edit"></i>&nbsp;Modifier</button>
						<button class="btn btn-danger btn-modal" data-toggle="ajaxModalDelete" data-linkok="<?php echo $this->baseUrl; ?>/backoffice/product/delkeywordsengine/id/<?php echo $row['ID']; ?>/page/<?php echo  $this->paginator->getCurrentPageNumber(); ?>" ><span class="glyphicon glyphicon-trash"></span> Supprimer</button>
					</div>
				</div>
				</form>
			</td>
		</tr>
		<?php } ?>
	</tbody>
</table>
<?php echo $this->paginationControl($this->paginator, 'All', 'pagination.phtml'); ?>
</div>