<%-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --%> <%-- - Show user's previous (accepted) submissions - - Attributes to pass in: - user - the e-person who's submissions these are (EPerson) - items - the submissions themselves (Item[]) - handles - Corresponding Handles (String[]) --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ page import="org.dspace.content.Item" %> <%@ page import="org.dspace.eperson.EPerson" %> <%@ page import="java.util.List" %> <% EPerson eperson = (EPerson) request.getAttribute("user"); List items = (List) request.getAttribute("items"); %> <%--

Your Submissions

--%>

<% if (items.size() == 0) { %> <%--

There are no items in the main archive that have been submitted by you.

--%>

<% } else { %> <%--

Below are listed your previous submissions that have been accepted into the archive.

--%>

<% if (items.size() == 1) { %> <%--

There is 1 item in the main archive that was submitted by you.

--%>

<% } else { %> <%--

There are <%= items.length %> items in the main archive that were submitted by you.

--%>

<%= items.size() %>

<% } %> <% } %> <%--

Back to My DSpace

--%>