<div class="table-responsive">
<form action="AdminMainServlet" method="POST" name="form">
<div class="row-fluid">
<div class="span12">
<div class="box">
<div class="box-title">
DataTable
<object align="right"> <button class="btn btn-primary btn-mini" name="btnAddAdmin" type="button" onclick="location.href = 'AdminAddServlet';" ><font size="1"><strong>AGREGAR</strong></font></button></object>
</br>DB
</div>
<div class="box-content nopadding">
<table id="datatable" class="table table-striped table-bordered">
<thead>
<tr>
<th><input class="check_all" type="checkbox" /></th>
<th>ID <i class="fa fa-sort"></i></th>
<th>Username <i class="fa fa-sort"></i></th>
<th>Email <i class="fa fa-sort"></i></th>
<th>Fecha de Creación <i class="fa fa-sort"></i></th>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<c:forEach var="list" items="${list}">
<tr>
<td class="center">
<c:if test="${list.idAdmin != idUser}" >
<input type="checkbox" name="chk" value="<c:out value="${list.idAdmin}" />"/>
</c:if>
</td>
<td class="center"><c:out value="${list.idAdmin}" /></td>
<td class="center"><c:out value="${list.username}" /></td>
<td class="center"><c:out value="${list.email}" /></td>
<td class="center"><c:out value="${list.createTime}" /></td>
<td class="center">
<a href="AdminGetServlet?id=<c:out value="${list.idAdmin}" />"><button class="btn btn-primary btn-mini" name="btnUpOne" type="button"><strong><font size="1">ACTUALIZAR</font></strong></button></a>
</td>
<td class="center">
<c:if test="${list.idAdmin != idUser}" >
<form method="post" action="AdminMainServlet">
<input type="hidden" name="id" value="<c:out value="${list.idAdmin}" />">
<button class="btn btn-danger btn-mini delete" name="btnDelRow" type="submit"><strong><font size="1">ELIMINAR</font></strong></button>
</form>
</c:if>
</td>
</tr>
</c:forEach>
</tbody>
<tfoot>
<tr>
<th><button class="btn btn-danger btn-mini delete" name="btnDelCol" type="submit"><font size="1">ELIMINAR</font></button></th>
<th>ID </th>
<th>Username </th>
<th>Email </th>
<th>Fecha de Creación </th>
<th> </th>
<th> </th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
</form>
</div>
</div>