Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 914 → Rev 915

/sun/hostcaptain/trunk/webapp/user/password/change.jsp
20,40 → 20,38
<html:form action="/user/password/submit" focus="oldpassword">
<backpath:current/>
 
<table border="0">
<table border=1>
<tr>
<th class="right">
<th>
<bean:message key="ak.hostcaptain.page.user.password.change.old_password" />
</th>
<td class="left">
<td>
<html:password property="oldpassword" size="16" redisplay="false" />
</td>
</tr>
<tr>
<th class="right">
<th>
<bean:message key="ak.hostcaptain.page.user.password.change.new_password" />
</th>
<td class="left">
<td>
<html:password property="password" size="16" redisplay="false" />
</td>
</tr>
<tr>
<th class="right">
<th>
<bean:message key="ak.hostcaptain.page.user.password.change.new_password_again" />
</th>
<td class="left">
<td>
<html:password property="password2" size="16" redisplay="false" />
</td>
</tr>
<tr>
<td class="right">
<td colspan=2>
<html:submit>
<bean:message key="ak.hostcaptain.page.user.password.change.submit" />
</html:submit>
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.password.change.back" /></backpath:backlink>
</td>
<td class="right">
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.password.change.cancel" /></backpath:backlink>
</td>
</tr>
</table>
</html:form>
/sun/hostcaptain/trunk/webapp/user/system/list.jsp
17,7 → 17,7
 
<html:errors/>
 
<table>
<table border=1>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.system.list.uid" /></th>
<th><bean:message key="ak.hostcaptain.page.user.system.list.name" /></th>
35,6 → 35,9
<logic:present name="u" property="owner">
<bean:write name="u" property="owner.login" />
</logic:present>
<logic:notPresent name="u" property="owner">
&nbsp;
</logic:notPresent>
</td>
<td>
<logic:equal name="u" property="enabled" value="true">x</logic:equal>
/sun/hostcaptain/trunk/webapp/user/system/edit.jsp
21,32 → 21,40
<backpath:current />
<html:hidden property="id" />
 
<bean:message key="ak.hostcaptain.page.user.system.edit.uid" />:
<html:text property="uid" />
<br>
<table border=1>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.system.edit.uid" /></th>
<td><html:text property="uid" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.system.edit.name" /></th>
<td><html:text property="name" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.system.edit.owner" /></th>
<td>
<html:select property="owner">
<html:option value="" key="ak.hostcaptain.page.user.system.edit.owner.empty"/>
<html:options collection="users" property="id" labelProperty="login" />
</html:select>
</td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.system.edit.enabled" /></th>
<td><html:checkbox property="enabled" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.system.edit.comment" /></th>
<td><html:textarea property="comment" /></td>
</tr>
<tr>
<td colspan=2>
<html:submit><bean:message key="ak.hostcaptain.page.user.system.edit.submit" /></html:submit>
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.system.edit.back" /></backpath:backlink>
</td>
</tr>
</table>
 
<bean:message key="ak.hostcaptain.page.user.system.edit.name" />:
<html:text property="name" />
<br>
 
<bean:message key="ak.hostcaptain.page.user.system.edit.owner" />:
<html:select property="owner">
<html:option value="" key="ak.hostcaptain.page.user.system.edit.owner.empty"/>
<html:options collection="users" property="id" labelProperty="login" />
</html:select>
<br>
 
<html:checkbox property="enabled" />
<bean:message key="ak.hostcaptain.page.user.system.edit.enabled" />
<br>
 
<bean:message key="ak.hostcaptain.page.user.system.edit.comment" />:
<html:textarea property="comment" />
<br>
 
<html:submit><bean:message key="ak.hostcaptain.page.user.system.edit.submit" /></html:submit>
 
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.system.edit.back" /></backpath:backlink>
</html:form>
 
</body>
/sun/hostcaptain/trunk/webapp/user/list.jsp
17,7 → 17,7
 
<html:errors/>
 
<table>
<table border=1>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.list.login" /></th>
<th><bean:message key="ak.hostcaptain.page.user.list.boss" /></th>
34,6 → 34,9
<logic:present name="u" property="boss">
<bean:write name="u" property="boss.login" />
</logic:present>
<logic:notPresent name="u" property="boss">
&nbsp;
</logic:notPresent>
</td>
<td>
<logic:equal name="u" property="superuser" value="true">x</logic:equal>
/sun/hostcaptain/trunk/webapp/user/edit.jsp
21,41 → 21,49
<backpath:current />
<html:hidden property="id" />
 
<bean:message key="ak.hostcaptain.page.user.edit.login" />:
<html:text property="login" />
<br>
<table border=1>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.login" /></th>
<td><html:text property="login" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.password" /></th>
<td><html:password property="password" redisplay="false" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.password_again" /></th>
<td><html:password property="password2" redisplay="false" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.boss" /></th>
<td>
<html:select property="boss">
<html:option value="" key="ak.hostcaptain.page.user.edit.boss.empty"/>
<core:options collection="users" property="id" />
</html:select>
</td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.superuser" /></th>
<td><html:checkbox property="superuser" />
FIXME: don't show this checkbox for editor itself</td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.enabled" /></th>
<td><html:checkbox property="enabled" /></td>
</tr>
<tr>
<th><bean:message key="ak.hostcaptain.page.user.edit.comment" /></th>
<td><html:textarea property="comment" /></td>
</tr>
<tr>
<td colspan=2>
<html:submit><bean:message key="ak.hostcaptain.page.user.edit.submit" /></html:submit>
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.edit.back" /></backpath:backlink>
</td>
</tr>
</table>
 
<bean:message key="ak.hostcaptain.page.user.edit.password" />:
<html:password property="password" redisplay="false" />
<br>
 
<bean:message key="ak.hostcaptain.page.user.edit.password_again" />:
<html:password property="password2" redisplay="false" />
<br>
 
<bean:message key="ak.hostcaptain.page.user.edit.boss" />:
<html:select property="boss">
<html:option value="" key="ak.hostcaptain.page.user.edit.boss.empty"/>
<core:options collection="users" property="id" />
</html:select>
<br>
 
<html:checkbox property="superuser" />
<bean:message key="ak.hostcaptain.page.user.edit.superuser" />
FIXME: don't show this checkbox for editor itself
<br>
 
<html:checkbox property="enabled" />
<bean:message key="ak.hostcaptain.page.user.edit.enabled" />
<br>
 
<bean:message key="ak.hostcaptain.page.user.edit.comment" />:
<html:textarea property="comment" />
<br>
 
<html:submit><bean:message key="ak.hostcaptain.page.user.edit.submit" /></html:submit>
 
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.edit.back" /></backpath:backlink>
</html:form>
 
</body>