On the project wiki I see the following: How do I change the home page for users?Find WEB-INF/jsp/home.jsp (Community) and WEB-INF/jsp/home/home.jsp. Here you can add logic into determine what page (JSP) you want to include. This could be based on user role, like: <authz:authorize ifAllGranted="ROLE_DEMO"> <%@ include file="homeForDemo.jsp" %>[/code]</authz:authorize> ___________________________________________________________________________________________ That's not really enough info for me to make the changes. - Where shall I insert this in the code? - The home.jsp file now contains items that are not self-explanatory: detail1,2,3,...- How can I now which one to keep to show only the repository (reports and analysis views)? Here's the current code: <body> <form name="fmHome" action="" method="GET"> <table cellpadding="20" cellspacing="0" width="100%" border="0"> <tr> <td> <br/> <br/> <b><spring:message code='jsp.home.content_title'/></b><spring:message code='jsp.home.summary'/> <br> <br> <b><spring:message code='jsp.home.detail1'/></b> <br> <spring:message code='jsp.home.detail2'/><br> <spring:message code='jsp.home.detail3'/><br> <spring:message code='jsp.home.detail4'/><br> <spring:message code='jsp.home.detail5'/><br> <spring:message code='jsp.home.detail6'/> <input type="hidden" name="topage" value=""> </td> </tr> </table> </form> </body>