]> git.mxchange.org Git - jjobs-war.git/blob - admin_user_lock.xhtml
39977d141e54c5013ddebb3ec210298a1bbacb14
[jjobs-war.git] / admin_user_lock.xhtml
1
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html
4         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
5         xmlns="http://www.w3.org/1999/xhtml"
6         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7         xmlns:h="http://xmlns.jcp.org/jsf/html"
8         xmlns:f="http://xmlns.jcp.org/jsf/core"
9         >
10
11         <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl">
12                 <ui:define name="metadata">
13                         <f:metadata>
14                                 <f:viewParam name="userId" value="#{beanHelper.user}" converter="UserConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_USER_ID_NOT_SET}" />
15                                 <f:viewAction onPostback="true" action="#{beanHelper.copyUserToController()}" />
16                         </f:metadata>
17                 </ui:define>
18
19                 <ui:define name="admin_title">
20                         <h:outputText value="#{msg.PAGE_TITLE_ADMIN_LOCK_USER}" />
21                 </ui:define>
22
23                 <ui:define name="content_header">
24                         #{msg.CONTENT_TITLE_ADMIN_LOCK_USER}
25                 </ui:define>
26
27                 <ui:define name="content">
28                         <h:outputFormat styleClass="errors" value="#{msg.ERROR_USER_ID_NOT_FOUND}" rendered="#{empty beanHelper.user}" />
29
30                         <h:form id="form_admin_user_unlock" rendered="#{not empty beanHelper.user and beanHelper.user.userAccountStatus == 'CONFIRMED'}">
31                                 <h:panelGroup styleClass="table_medium" layout="block">
32                                         <div class="table_header">
33                                                 <h:outputFormat value="#{msg.ADMIN_LOCK_USER_TITLE}">
34                                                         <f:param value="#{beanHelper.user.userName}" />
35                                                         <f:param value="#{beanHelper.user.userId}" />
36                                                 </h:outputFormat>
37                                         </div>
38
39                                         <div class="para">
40                                                 <div>
41                                                         <h:outputLabel for="contactGender" value="#{msg.PERSONAL_DATA_GENDER}" />
42                                                 </div>
43
44                                                 <div>
45                                                         <h:outputFormat id="contactGender" value="#{msg[beanHelper.user.userContact.contactGender.messageKey]}" />
46                                                 </div>
47                                         </div>
48
49                                         <div class="para">
50                                                 <div>
51                                                         <h:outputLabel for="contactFirstName" value="#{msg.PERSONAL_DATA_FIRST_NAME}" />
52                                                 </div>
53
54                                                 <div>
55                                                         <h:outputFormat id="contactFirstName" value="#{beanHelper.user.userContact.contactFirstName}" />
56                                                 </div>
57                                         </div>
58
59                                         <div class="para">
60                                                 <div>
61                                                         <h:outputLabel for="contactFamilyName" value="#{msg.PERSONAL_DATA_FAMILY_NAME}" />
62                                                 </div>
63
64                                                 <div>
65                                                         <h:outputFormat id="contactFamilyName" value="#{beanHelper.user.userContact.contactFamilyName}" />
66                                                 </div>
67                                         </div>
68
69                                         <div class="para">
70                                                 <div>
71                                                         <h:outputLabel for="userLockReason" value="#{msg.ADMIN_ENTER_USER_LOCK_REASON}" />
72                                                 </div>
73
74                                                 <div>
75                                                         <h:inputTextarea styleClass="input" id="userLockReason" value="#{adminUserController.userLockReason}" cols="50" rows="10" required="true" requiredMessage="#{msg.ADMIN_USER_UNLOCK_REASON_REQUIRED}" />
76                                                 </div>
77                                         </div>
78
79                                         <div class="table_footer">
80                                                 <h:commandButton styleClass="reset right_space" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
81
82                                                 <h:commandButton styleClass="submit" type="submit" action="#{adminUserController.lockUserAccount(beanHelper.user)}" value="#{msg.BUTTON_ADMIN_LOCK_USER_ACCOUNT}" />
83                                         </div>
84                                 </h:panelGroup>
85                         </h:form>
86
87                         <h:outputFormat styleClass="errors" value="#{msg.ERROR_ADMIN_CANNOT_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.userAccountStatus == 'UNCONFIRMED'}">
88                                 <f:param value="#{beanHelper.user.userName}" />
89                                 <f:param value="#{beanHelper.user.userId}" />
90                         </h:outputFormat>
91
92                         <h:outputFormat styleClass="errors" value="#{msg.ERROR_ADMIN_CANNOT_LOCK_USER_ACCOUNT_LOCKED}" rendered="#{beanHelper.user.userAccountStatus == 'LOCKED'}">
93                                 <f:param value="#{beanHelper.user.userName}" />
94                                 <f:param value="#{beanHelper.user.userId}" />
95                         </h:outputFormat>
96                 </ui:define>
97         </ui:composition>
98 </html>