Rev 1014 | Details | Compare with Previous | 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" %> |
||
958 | dev | 6 | <%@ taglib uri="/WEB-INF/ak-strutsx.tld" prefix="strutsx" %> |
924 | dev | 7 | <%@ taglib uri="/WEB-INF/hostadmiral-core.tld" prefix="core" %> |
920 | dev | 8 | <html> |
9 | |||
10 | <head> |
||
11 | <meta http-equiv="expires" content="0"> |
||
924 | dev | 12 | <title><bean:message key="ak.hostadmiral.page.index.title" /></title> |
958 | dev | 13 | <link rel="stylesheet" type="text/css" href="<strutsx:root />/style/general.css"> |
920 | dev | 14 | </head> |
15 | |||
16 | <body> |
||
17 | |||
924 | dev | 18 | <h1><bean:message key="ak.hostadmiral.page.index.title" /></h1> |
920 | dev | 19 | |
20 | <ul> |
||
924 | dev | 21 | <li><backpath:link action="/user/password/show"><bean:message key="ak.hostadmiral.page.index.password_change" /></backpath:link></li> |
22 | <li><backpath:link action="/user/list"><bean:message key="ak.hostadmiral.page.index.user_list" /></backpath:link></li> |
||
920 | dev | 23 | |
24 | <logic:equal name="showSystemUsers" value="true"> |
||
924 | dev | 25 | <li><backpath:link action="/user/system/list"><bean:message key="ak.hostadmiral.page.index.system_user_list" /></backpath:link></li> |
920 | dev | 26 | </logic:equal> |
27 | <logic:equal name="showInetDomains" value="true"> |
||
924 | dev | 28 | <li><backpath:link action="/domain/list"><bean:message key="ak.hostadmiral.page.index.domain_list" /></backpath:link></li> |
920 | dev | 29 | </logic:equal> |
30 | <logic:equal name="showMailboxes" value="true"> |
||
924 | dev | 31 | <li><backpath:link action="/mail/box/list"><bean:message key="ak.hostadmiral.page.index.mail_box_list" /></backpath:link></li> |
920 | dev | 32 | </logic:equal> |
33 | <logic:equal name="showMailAliases" value="true"> |
||
924 | dev | 34 | <li><backpath:link action="/mail/alias/list"><bean:message key="ak.hostadmiral.page.index.mail_alias_list" /></backpath:link></li> |
920 | dev | 35 | </logic:equal> |
36 | |||
924 | dev | 37 | <li><backpath:link action="/system/logout"><bean:message key="ak.hostadmiral.page.index.logout" /></backpath:link></li> |
920 | dev | 38 | </ul> |
39 | |||
950 | dev | 40 | <p> |
41 | <bean:message key="ak.hostadmiral.page.index.login" />: |
||
42 | <bean:write name="user" property="login" /> |
||
43 | </p> |
||
44 | <p> |
||
45 | <bean:message key="ak.hostadmiral.page.index.locale" />: |
||
46 | <core:language /> |
||
47 | <logic:notEmpty name="user" property="locale.displayCountry"> |
||
48 | / <core:country /> |
||
49 | </logic:notEmpty> |
||
50 | </p> |
||
1014 | dev | 51 | <p> |
52 | <bean:message key="ak.hostadmiral.page.general.version" />: |
||
53 | <bean:write name="projectVersion" /> |
||
54 | </p> |
||
920 | dev | 55 | |
56 | </body> |
||
57 | |||
58 | </html> |