Guest User

Untitled

a guest
Jan 21st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div class="panel panel-default" style="height: 100px; width: 300px; overflow: auto">
  2. <c:if test="${!empty listUsers}">
  3. <c:forEach items="${listUsers}" var="user">
  4. <c:if test="${!company.responsibleUser.contains(user)}">
  5. <table class="table table-hover table-condensed">
  6. <c:if test="${!empty company.id}">
  7. <td disabled="true"><a href="<c:url value='/addresponsible/${user.id}/${company.id}/' />"
  8. style="text-decoration: none" />${user.username}</td>
  9. </c:if>
  10. </table>
  11. </c:if>
  12. </c:forEach>
  13. </c:if>
  14. </div>
Add Comment
Please, Sign In to add comment