Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss223_application / ibssAppUserDetails.jsp @ 133:689ac5036490

History | View | Annotate | Download (4.13 KB)

1
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/tld/struts-logic" prefix="logic" %>
4
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL" %>
5
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
6

    
7
<bean:define id="detailBean" name="appUserForm" property="appUserDetailsBean" />
8
<bean:define id="viewBean" name="appUserForm" property="appUserViewBean" />
9

    
10
<h3 class="title"><strong><c:out value="${sessionScope.displayDesc}"/> - <bean:message key="navigation.details.displayDesc.details" /></strong></h3>
11

    
12
<table id="errorTable">
13
<tr>
14
	<td>
15
		<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
16
	</td>
17
</tr>
18
</table>
19

    
20
<htmlEL:form action="/ss223/appUserEditDetails.do">
21
<table class="tabularForm">
22
  <tr>
23
    <td width="61">&nbsp;</td>
24
    <td width="160">&nbsp;</td>
25
    <td colspan="2">&nbsp;</td>
26
    <td width="47" colspan="2">&nbsp;</td>
27
  </tr>
28
  <tr>
29
    <td>&nbsp;</td>
30
    <td><bean:message key="appuser.user.id"/>:</td>
31
    <td colspan="2"><strong><c:out value="${detailBean.map.userAlias}"/></strong></td>
32
    <td colspan="2">&nbsp;</td>
33
  </tr>
34
  <%-- <tr>
35
    <td>&nbsp;</td>
36
    <td><bean:message key="appuser.user.status"/>:</td>
37
    <td colspan="2"><strong><c:out value="${detailBean.map.userStatus}"/></strong></td>
38
    <td colspan="2">&nbsp;</td>
39
  </tr> --%>
40
   <tr>
41
    <td>&nbsp;</td>
42
    <td><bean:message key="appuser.application.name"/>:</td>
43
    <td colspan="2"><strong><c:out value="${detailBean.map.appName}"/></strong></td>
44
    <td colspan="2">&nbsp;</td>
45
  </tr>
46
  <tr>
47
    <td>&nbsp;</td>
48
    <td><bean:message key="appuser.user.description"/>:</td>
49
    <td colspan="2">
50
    <c:choose>
51
    	<c:when test="${not empty detailBean.map.userDescription}">
52
    		 <strong><c:out value="${detailBean.map.userDescription}"/></strong>
53
    	</c:when>
54
    	<c:otherwise>-</c:otherwise>
55
    </c:choose>
56
    </td>
57
    <td colspan="2">&nbsp;</td>
58
  </tr>
59
  <tr>
60
    <td>&nbsp;</td>
61
    <td><bean:message key="appuser.created.date"/>:</td>
62
    <td colspan="2">
63
    <c:choose>
64
    	<c:when test="${not empty detailBean.map.userCreationDate}">
65
    		 <strong><c:out value="${detailBean.map.userCreationDate}"/></strong>
66
    	</c:when>
67
    	<c:otherwise>-</c:otherwise>
68
    </c:choose>
69
    </td>
70
    <td colspan="2">&nbsp;</td>
71
  </tr>
72
  <%-- <tr>
73
    <td>&nbsp;</td>
74
    <td><bean:message key="group.updated.date"/>:</td>
75
    <td colspan="2">
76
    <c:choose>
77
    	<c:when test="${not empty detailBean.map.groupUpdatedDate}">
78
    		 <strong><c:out value="${detailBean.map.groupUpdatedDate}"/></strong>
79
    	</c:when>
80
    	<c:otherwise>-</c:otherwise>
81
    </c:choose>
82
    </td>
83
    <td colspan="2">&nbsp;</td>
84
  </tr> --%>
85
  <tr>
86
    <td>&nbsp;</td>
87
    <td>&nbsp;</td>
88
    <td colspan="2">&nbsp;</td>
89
    <td colspan="2">&nbsp;</td>
90
  </tr>
91
  </table>
92
	  <div class="floatRight">
93
	  	<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
94
			<bean:message key="general.button.back"/>						
95
		</htmlEL:submit>
96
		<c:if test="${appUserForm.map.hasAppResetAccess eq true}">
97
		<htmlEL:hidden property="userId" name="detailBean" value="${detailBean.map.userId}"></htmlEL:hidden>
98
	  	<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
99
			<bean:message key="general.button.reset.password"/>						
100
		</htmlEL:submit>
101
		</c:if>
102
		<c:if test="${appUserForm.map.hasAppEditAccess eq true}">
103
		<htmlEL:hidden property="userId" name="detailBean" value="${detailBean.map.userId}"></htmlEL:hidden>
104
	  	<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
105
			<bean:message key="general.button.edit"/>						
106
		</htmlEL:submit>
107
		</c:if>
108
		<c:if test="${appUserForm.map.hasAppDeleteAccess eq true}">
109
		<htmlEL:hidden property="userId" name="detailBean" value="${detailBean.map.userId}"></htmlEL:hidden>
110
		<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
111
			<bean:message key="general.button.delete"/>						
112
		</htmlEL:submit>
113
		</c:if>
114

    
115
	  </div>
116
  </htmlEL:form>
117