Subversion Repositories general

Rev

Rev 1014 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld"      prefix="bean"     %>
<%@ taglib uri="/WEB-INF/struts-logic.tld"     prefix="logic"    %>
<%@ taglib uri="/WEB-INF/struts-html.tld"      prefix="html"     %>
<%@ taglib uri="/WEB-INF/ak-backpath.tld"      prefix="backpath" %>
<%@ taglib uri="/WEB-INF/ak-strutsx.tld"       prefix="strutsx"  %>
<%@ taglib uri="/WEB-INF/hostadmiral-core.tld" prefix="core"     %>
<html>

<head>
        <meta http-equiv="expires" content="0">
        <title><bean:message key="ak.hostadmiral.page.user.edit.title" /></title>
        <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css">
</head>

<body>

<h1><bean:message key="ak.hostadmiral.page.user.edit.title" /></h1>

<strutsx:errorsIterator id="errors" />
<strutsx:notEmpty name="errors">
        <div class="error"><bean:message key="ak.hostadmiral.page.general.errors" />:
                <ul>
                <logic:iterate name="errors" id="error">
                        <li><strutsx:message name="error" property="key" valuesProperty="values" /></li>
                </logic:iterate>
                </ul>
        </div>
</strutsx:notEmpty>

<html:form action="/user/submit">
<backpath:current />
<html:hidden property="id" />

<table border=1>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.login" /></th>
                <td><html:text property="login" /></td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.password" /></th>
                <td><html:password property="password" redisplay="false" /></td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.password_again" /></th>
                <td><html:password property="password2" redisplay="false" /></td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.boss" /></th>
                <td>
                        <core:rights name="u" method="mayChangeBoss">
                                <html:select property="boss">
                                        <html:option value="" key="ak.hostadmiral.page.user.edit.boss.empty"/>
                                        <core:options collection="users" property="id" />
                                </html:select>
                        </core:rights>
                        <core:noRights name="u" method="mayChangeBoss">
                                <bean:write name="u" property="boss.login" />
                        </core:noRights>
                </td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.superuser" /></th>
                <td>
                        <core:rights name="u" method="mayChangeSuperuser">
                                <html:checkbox property="superuser" />
                        </core:rights>
                        <core:noRights name="u" method="mayChangeSuperuser">
                                <logic:equal name="u" property="superuser" value="true">
                                        <bean:message key="ak.hostadmiral.page.user.edit.superuser.true" />
                                </logic:equal>
                                <logic:notEqual name="u" property="superuser" value="true">
                                        <bean:message key="ak.hostadmiral.page.user.edit.superuser.false" />
                                </logic:notEqual>
                        </core:noRights>
                </td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.locale" /></th>
                <td>
                        <html:select property="locale">
                                <core:localeOptions />
                        </html:select>
                </td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.enabled" /></th>
                <td><html:checkbox property="enabled" /></td>
    </tr>
        <tr>
                <th><bean:message key="ak.hostadmiral.page.user.edit.comment" /></th>
                <td><html:textarea property="comment" /></td>
    </tr>
        <tr>
                <td colspan=2>
                        <html:submit><bean:message key="ak.hostadmiral.page.user.edit.submit" /></html:submit>
                        <backpath:backlink><bean:message key="ak.hostadmiral.page.user.edit.back" /></backpath:backlink>
                        <logic:notEmpty name="u" property="id">
                                <backpath:link action="/user/logins" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostadmiral.page.user.edit.logins" /></backpath:link>
                        </logic:notEmpty>
                </td>
    </tr>
</table>

</html:form>

<p>
        <bean:message key="ak.hostadmiral.page.general.version" />:
        <bean:write name="projectVersion" />
</p>

</body>

</html>