Crops

tabla

Dec 11th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. <table id="tabla-ordenes" class="table table-hover table-condensed mitabla table-hover">
  2.     <thead>
  3.         <tr>
  4.             <th>Tipo orden</th>
  5.             <th>Matrícula</th>
  6.             <th>Estado</th>
  7.             <th>Expedición</th>
  8.             <th>Plazo máx</th>
  9.         </tr>
  10.     </thead>
  11.     <tbody>
  12.     <ui:repeat value="#{ordenManagedBean.listarOrden()}" var="item">
  13.         <tr>
  14.             <td>#{item.idTipoOrden.nombreTipoOrden}</td>
  15.             <td>#{item.idVehiculo.matricula}</td>
  16.             <td>#{item.idEstadoOrden.nombreEstadoOrden}</td>
  17.             <td>
  18.                 <h:outputText value="#{item.fechaEmision}" >
  19.                     <f:convertDateTime pattern="dd/MM/yyyy" />
  20.                 </h:outputText>
  21.             </td>
  22.             <td>
  23.                 <h:outputText value="#{item.plazoMaximo}" >
  24.                     <f:convertDateTime pattern="dd/MM/yyyy" />
  25.                 </h:outputText>
  26.             </td>
  27.         </tr>
  28.     </ui:repeat>
  29.     </tbody>
  30. </table>
Advertisement
Add Comment
Please, Sign In to add comment