{% for books in books__list %} {{ books.getBookName }} {{ 'by' | trans }} {{ books.getBookAuth.getAuthName }} {{ books.getBookCatRef.getCatName }} / {{ books.getLibrarySections.getLsName }} {{ books.getBookCost }} / {{ books.getBookFinePerHour }} {{ books.getBookDepositRequirement }} {% if is_granted('ROLE_LIBRARIAN') %} {% endif %} {% if books.getLibraryBookCopies.toArray() %} {{ 'Copy Number'|trans }} {{ 'Condition'|trans }} {% if is_granted('ROLE_LIBRARIAN') %} {{ 'Action'|trans }} {% endif %} {% for book_copy in books.getLibraryBookCopies.toArray() %} {{ book_copy.getBcNo }} {{ book_copy.getBcConditionRating }} {% if is_granted('ROLE_LIBRARIAN') %} {% endif %} {% endfor %} {% endif %} {% endfor %}