Add mode comments to the classes
[proteocache.git] / webapp / view / support / Notimplemented.jsp
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
3 <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
4 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
5 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
6 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
7 <%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
8
9 <html>
10 <jsp:include page="../fragments/header.jsp" />
11 <body>
12         <div class="container">
13                 <sec:authorize access="hasAnyRole('ROLE_ADMIN','ROLE_USER')">
14                         <jsp:include page="../fragments/mainmenu.jsp" />
15                 </sec:authorize>
16                 <sec:authorize access="!hasAnyRole('ROLE_ADMIN','ROLE_USER')">
17                         <jsp:include page="../fragments/publicmenu.jsp" />
18                 </sec:authorize>
19
20                 <div class="panel panel-default">
21                         <div class="panel-heading">
22                                 <div style="font-weight:bold;">The page is not available...</div>
23                         </div>
24                         <div class="panel-body">
25                                 <p>The functionality is not implemented yet</p>
26                         </div>
27                 </div>
28
29                 <jsp:include page="../fragments/footer.jsp" />
30         </div>
31 </body>
32 </html>