Log In | Get Help   
Home My Page Projects Code Snippets Project Openings Accounting and Billing Portal
Summary Activity Forums Tracker Lists Tasks Docs Surveys News SCM Files
[abportal] View of /src/main/webapp/login-administration.jsp
[abportal] / src / main / webapp / login-administration.jsp Repository:
ViewVC logotype

View of /src/main/webapp/login-administration.jsp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (download) (annotate)
Wed Jul 28 10:05:51 2010 UTC (13 years, 10 months ago) by dgarcia
File size: 2085 byte(s)
First code commit
<%@ taglib prefix="portlet" uri="http://java.sun.com/portlet"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ page contentType="text/html" isELIgnored="false" %>


<portlet:renderURL var="showAddUserUrl">
	<portlet:param name="myaction" value="addUserForm" />
</portlet:renderURL>

<form:form name="catalogForm" method="post" action="${showAddUserUrl}">
	<c:if test="${not empty users}">
		<table border="1">
			<tr bgcolor="#99CCFF">
				<td valign="top"><b>Portal Username</b></td>
				<td valign="top"><b>License Username</b></td>
				<td valign="top"><b>AccountingGroup</b></td>
				<td valign="top"><b>Access to AccountingGroup Data</b></td>
				<td valign="top"><b>Access to All Data</b></td>
				<td valign="top"><b>Action</b></td>
			</tr>
			<c:forEach var="user" items="${users}">
				<tr>
					<td valign="top"><c:out value="${user.username}" /></td>
					<td valign="top"><c:out value="${user.accountingUsername}" /></td>
					<td valign="top"><c:out value="${user.accountingGroup}" /></td>
					<td valign="top"><c:out value="${user.seeAccountingGroupData}" /></td>
					<td valign="top"><c:out value="${user.seeAll}" /></td>
					<td align="center" valign="top" width="100px"><a href="
							<portlet:renderURL>
								<portlet:param name="myaction" value="editUserForm" />
								<portlet:param name="username" value="${user.username}" />
							</portlet:renderURL>					
						"><b>Edit</b></a>
						/
						<a href="
						<portlet:actionURL>
							<portlet:param name="myaction" value="removeUser" />
							<portlet:param name="username" value="${user.username}" />
						</portlet:actionURL>					
						" onclick="javascript: return confirmRemove()"><b>Remove</b></a>
					</td>
				</tr>
			</c:forEach>
		</table>
	</c:if>
	
	<br></br>
	
	<table align="right">
		<tr>
			<td><input type="submit" value="Add User" /></td>
		</tr>
		<tr>
			<td>&nbsp;</td>
		</tr>
	</table>
</form:form>
<br/><br/>

root@forge.cesga.es
ViewVC Help
Powered by ViewVC 1.0.0  

Powered By FusionForge