src/main/webapp/WEB-INF/jspf/menu-entry.jspf

Fri, 09 Oct 2020 11:50:21 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 09 Oct 2020 11:50:21 +0200
changeset 118
d3583959c875
parent 115
c27638a50c92
permissions
-rw-r--r--

adding a new project redirects to the projects overview (because we do not retrieve the ID of the inserted project yet)

<div class="menuEntry"
     <c:if test="${menu.active}">data-active</c:if> >
    <a href="${menu.pathName}">
        <c:if test="${empty menu.resourceKey}">
            <c:out value="${menu.text}"/>
        </c:if>
        <c:if test="${not empty menu.resourceKey}">
            <fmt:bundle basename="${menu.resourceKey.bundle}">
                <fmt:message key="${menu.resourceKey.key}"/>
            </fmt:bundle>
        </c:if>
    </a>
</div>

mercurial