Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <table id="tabla-ordenes" class="table table-hover table-condensed mitabla table-hover">
- <thead>
- <tr>
- <th>Tipo orden</th>
- <th>Matrícula</th>
- <th>Estado</th>
- <th>Expedición</th>
- <th>Plazo máx</th>
- </tr>
- </thead>
- <tbody>
- <ui:repeat value="#{ordenManagedBean.listarOrden()}" var="item">
- <tr>
- <td>#{item.idTipoOrden.nombreTipoOrden}</td>
- <td>#{item.idVehiculo.matricula}</td>
- <td>#{item.idEstadoOrden.nombreEstadoOrden}</td>
- <td>
- <h:outputText value="#{item.fechaEmision}" >
- <f:convertDateTime pattern="dd/MM/yyyy" />
- </h:outputText>
- </td>
- <td>
- <h:outputText value="#{item.plazoMaximo}" >
- <f:convertDateTime pattern="dd/MM/yyyy" />
- </h:outputText>
- </td>
- </tr>
- </ui:repeat>
- </tbody>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment