Subversion Repositories general

Rev

Rev 905 | Blame | 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/hostcaptain-core.tld" prefix="core"     %>
<html>

<head>
        <meta http-equiv="expires" content="0">
        <title><bean:message key="ak.hostcaptain.page.user.list.title" /></title>
</head>

<body>

<h1><bean:message key="ak.hostcaptain.page.user.list.title" /></h1>

<html:errors/>

<table>
        <tr>
                <th><bean:message key="ak.hostcaptain.page.user.list.login" /></th>
                <th><bean:message key="ak.hostcaptain.page.user.list.boss" /></th>
                <th><bean:message key="ak.hostcaptain.page.user.list.superuser" /></th>
                <th><bean:message key="ak.hostcaptain.page.user.list.enabled" /></th>
                <th>&nbsp;</th>
                <th>&nbsp;</th>
        </tr>

<logic:iterate name="users" id="u">
        <tr>
                <td><bean:write name="u" property="login" /></td>
                <td>
                        <logic:present name="u" property="boss">
                                <bean:write name="u" property="boss.login" />
                        </logic:present>
                </td>
                <td>
                        <logic:equal name="u" property="superuser" value="true">x</logic:equal>
                        <logic:notEqual name="u" property="superuser" value="true">&nbsp;</logic:notEqual>
                </td>
                <td>
                        <logic:equal name="u" property="enabled" value="true">x</logic:equal>
                        <logic:notEqual name="u" property="enabled" value="true">&nbsp;</logic:notEqual>
                </td>
                <td><backpath:link action="/user/edit" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.edit" /></backpath:link></td>
                <td><backpath:link action="/user/delete" paramId="id" paramName="u" paramProperty="id"><bean:message key="ak.hostcaptain.page.user.list.delete" /></backpath:link></td>
        </tr>
</logic:iterate>
</table>

<backpath:link action="/user/edit"><bean:message key="ak.hostcaptain.page.user.list.add" /></backpath:link>
<br>
<backpath:backlink><bean:message key="ak.hostcaptain.page.user.list.back" /></backpath:backlink>

</body>

</html>