<%--
 * Copyright by Intland Software
 *
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Intland Software. ("Confidential Information"). You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Intland.
 *
 * $Revision$ $Date$
--%>

<%@ taglib uri="jstl-c" prefix="c" %>
<%@ taglib uri="jstl-fn" prefix="fn" %>

<table border="0" cellpadding="0" cellspacing="0" style="width:80%;">
	<c:choose>
		<c:when test="${fn:length(myProjects) eq 0}">
			<tr><td>No project available.</td></tr>
		</c:when>

		<c:otherwise>
			<c:forEach items="${myProjects}" var="projects">
				<tr>
					<c:forEach items="${projects}" var="project">
						<td class="textData" style="width:30%;"><a class="${project.styleClass}" href="<c:url value="${project.urlLink}" />"><c:out value="${project.name}" /></a></td>
					</c:forEach>
				</tr>
			</c:forEach>
		</c:otherwise>
	</c:choose>
</table>
