index.jsp 443 Bytes
Newer Older
Joel Florentin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<%@ 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>
    <a href="/film">Crear</a>
    <ul>
        <c:forEach items="${films}" var="film">
            <li><a href="/film/${film.getId()}">${film.getTitle()}</a></li>
        </c:forEach>
    </ul>
</body>
</html>