Films.jsp 430 Bytes
Newer Older
Javier Ferreira committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<%@ 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" %>
<html>
<head>
</head>
<body>
    <ul>
        <c:forEach items="${films}" var="pelicula">
            <li>${pelicula.title}</li>
            <li>${pelicula.description}</li><br>
        </c:forEach>
    </ul>
</body>
</html>