40 lines
No EOL
1.5 KiB
Text
40 lines
No EOL
1.5 KiB
Text
<%@ taglib uri="/WEB-INF/ablia.tld" prefix="ab" %>
|
|
<%@ page language="java" import="com.ablia.jsp.*" %>
|
|
|
|
<%-- DICHIARAZIONE BEAN --%>
|
|
<jsp:useBean id="bean" class="com.ablia.anag.Clifor" type="com.ablia.anag.Clifor" scope="request" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="utenteLogon" type="com.ablia.common.UsersI" class="com.ablia.common.Users" scope="session" >
|
|
</jsp:useBean>
|
|
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
|
|
<%-- RIGA 1 --%>
|
|
<div class="row">
|
|
<div class="col-lg-12" id="no-more-tables">
|
|
<table class="table table-bordered table-hover table-striped dataTable table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th>Descrizione</th>
|
|
</tr>
|
|
</thead>
|
|
<ab:whilevec rowbeanclass="com.ablia.anag.Users" vectumerator="listaUserClifor">
|
|
<tr>
|
|
<ab:if wherecondition='<%=utenteLogon.getId_userProfile()==1%>'>
|
|
<td class="comandi" align="center"><div class="inline text-center hidden-print">
|
|
<a href="javascript:modUser('<%=rowBean.getId_users()%>');">
|
|
<i class="fa fa-edit" title="Modifica Record"></i>
|
|
</a>
|
|
<a href="javascript:delUser('<%=rowBean.getId_users()%>');">
|
|
<i class="fa fa-trash-o" title="Cancella Record"></i>
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</ab:if>
|
|
<td data-title="Descrizione"><%= rowBean.getCognomeNome() %></td>
|
|
</tr>
|
|
</ab:whilevec>
|
|
</table>
|
|
</div>
|
|
</div> |