mirror of https://github.com/apache/archiva.git
[MRM-131] add some extra fields to the browse page
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@436706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cbde2af4c7
commit
963f1523bb
|
@ -105,7 +105,11 @@
|
|||
<th>Version</th>
|
||||
<td>${model.version}</td>
|
||||
</tr>
|
||||
<%-- TODO: derivatives
|
||||
<tr>
|
||||
<th>Packaging</th>
|
||||
<td><code>${model.packaging}</code></td>
|
||||
</tr>
|
||||
<%-- TODO: derivatives
|
||||
<tr>
|
||||
<th>Derivatives</th>
|
||||
<td>
|
||||
|
@ -147,11 +151,19 @@
|
|||
-->
|
||||
</table>
|
||||
|
||||
<c:if test="${model.organization != null || !empty(model.licenses)
|
||||
<c:if test="${!empty(model.url) || model.organization != null || !empty(model.licenses)
|
||||
|| model.issueManagement != null || model.ciManagement != null}">
|
||||
|
||||
<h2>Other Details</h2>
|
||||
<table>
|
||||
<c:if test="${!empty(model.url)}">
|
||||
<tr>
|
||||
<th>URL</th>
|
||||
<td>
|
||||
<a href="${model.url}">${model.url}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</c:if>
|
||||
<c:if test="${model.organization != null}">
|
||||
<tr>
|
||||
<th>Organisation</th>
|
||||
|
|
Loading…
Reference in New Issue