films.jsp 409 Bytes
Newer Older
Cesar Giulano Gonzalez Maqueda committed
1 2 3 4 5 6 7 8 9 10 11 12
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<ul>
    <c:forEach items="${films}" var="numero">
        <li>${numero.title}</li>
        <ul>
            <li>Description: ${numero.description}</li>
        </ul>
        <hr/>
    </c:forEach>
</ul>