Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
920 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
||
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
||
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
||
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
||
6 | <%@ taglib uri="/WEB-INF/hostcaptain-core.tld" prefix="core" %> |
||
7 | <html> |
||
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
11 | <title><bean:message key="ak.hostcaptain.page.index.title" /></title> |
||
12 | </head> |
||
13 | |||
14 | <body> |
||
15 | |||
16 | <h1><bean:message key="ak.hostcaptain.page.index.title" /></h1> |
||
17 | |||
18 | <ul> |
||
19 | <li><backpath:link action="/user/password/show"><bean:message key="ak.hostcaptain.page.index.password_change" /></backpath:link></li> |
||
20 | <li><backpath:link action="/user/list"><bean:message key="ak.hostcaptain.page.index.user_list" /></backpath:link></li> |
||
21 | |||
22 | <logic:equal name="showSystemUsers" value="true"> |
||
23 | <li><backpath:link action="/user/system/list"><bean:message key="ak.hostcaptain.page.index.system_user_list" /></backpath:link></li> |
||
24 | </logic:equal> |
||
25 | <logic:equal name="showInetDomains" value="true"> |
||
26 | <li><backpath:link action="/domain/list"><bean:message key="ak.hostcaptain.page.index.domain_list" /></backpath:link></li> |
||
27 | </logic:equal> |
||
28 | <logic:equal name="showMailboxes" value="true"> |
||
29 | <li><backpath:link action="/mail/box/list"><bean:message key="ak.hostcaptain.page.index.mail_box_list" /></backpath:link></li> |
||
30 | </logic:equal> |
||
31 | <logic:equal name="showMailAliases" value="true"> |
||
32 | <li><backpath:link action="/mail/alias/list"><bean:message key="ak.hostcaptain.page.index.mail_alias_list" /></backpath:link></li> |
||
33 | </logic:equal> |
||
34 | |||
35 | <li><backpath:link action="/system/logout"><bean:message key="ak.hostcaptain.page.index.logout" /></backpath:link></li> |
||
36 | </ul> |
||
37 | |||
38 | <p><bean:message key="ak.hostcaptain.page.index.login" />: <bean:write name="user" property="login" /></p> |
||
39 | |||
40 | </body> |
||
41 | |||
42 | </html> |