src/main/webapp/WEB-INF/jspf/project-header.jspf

Mon, 05 Apr 2021 17:56:46 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 05 Apr 2021 17:56:46 +0200
changeset 187
0bf35031a918
parent 184
e8eecee6aadf
child 199
59393c8cc557
permissions
-rw-r--r--

project name and node may have 50 chars - fixes #118

<%--
project: Project
component: Component (optional)
--%>
<div class="table project-attributes">
    <div class="row">
        <div class="caption"><fmt:message key="project.name"/>:</div>
        <div><c:out value="${project.name}"/></div>
        <div class="caption"><fmt:message key="description"/>:</div>
        <div><c:out value="${project.description}"/></div>
    </div>
    <div class="row">
        <div class="caption"><fmt:message key="project.owner"/>:</div>
        <div>
            <c:if test="${not empty project.owner}"><c:out value="${project.owner.displayname}"/></c:if>
        </div>
        <div class="caption"><fmt:message key="project.repoUrl"/>:</div>
        <div>
            <c:if test="${not empty project.repoUrl}">
                <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out
                        value="${project.repoUrl}"/></a>
            </c:if>
        </div>
    </div>
    <c:if test="${not empty component}">
        <div class="row">
            <div class="caption"><fmt:message key="component"/>:</div>
            <div><c:out value="${component.name}"/></div>
            <div class="caption"><fmt:message key="component.lead"/>:</div>
            <div>
                <c:if test="${not empty component.lead}">
                    <c:out value="${component.lead.displayname}"/>
                </c:if>
                <c:if test="${empty component.lead}">
                    <fmt:message key="placeholder.null-lead"/>
                </c:if>
            </div>
        </div>
    </c:if>
</div>

mercurial