blob: 4700f24efd8b0d04c961ac99af8190cd589793cd [file] [log] [blame]
<%--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--%>
<%@ taglib uri="http://jspwiki.apache.org/tags" prefix="wiki" %>
<%@ page import="org.apache.wiki.api.core.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page import="javax.servlet.jsp.jstl.fmt.*" %>
<fmt:setLocale value="${prefs.Language}" />
<fmt:setBundle basename="templates.default"/>
<%--
Context c = Context.findContext( pageContext );
--%>
<%-- Main Content Section --%>
<%-- This has been source ordered to come first in the markup (and on small devices)
but to be to the right of the nav on larger screens --%>
<div class="page-content">
<wiki:CheckLock mode="locked" id="lock">
<div class="alert alert-danger">
<fmt:message key="edit.locked">
<fmt:param><c:out value="${lock.locker}"/></fmt:param>
<fmt:param><c:out value="${lock.timeLeft}"/></fmt:param>
</fmt:message>
</div>
</wiki:CheckLock>
<wiki:CheckVersion mode="notlatest">
<div class="alert alert-danger">
<fmt:message key="edit.restoring">
<fmt:param><wiki:PageVersion/></fmt:param>
</fmt:message>
</div>
</wiki:CheckVersion>
<wiki:Editor />
</div>