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>
|
<th>Version</th>
|
||||||
<td>${model.version}</td>
|
<td>${model.version}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<%-- TODO: derivatives
|
<tr>
|
||||||
|
<th>Packaging</th>
|
||||||
|
<td><code>${model.packaging}</code></td>
|
||||||
|
</tr>
|
||||||
|
<%-- TODO: derivatives
|
||||||
<tr>
|
<tr>
|
||||||
<th>Derivatives</th>
|
<th>Derivatives</th>
|
||||||
<td>
|
<td>
|
||||||
|
@ -147,11 +151,19 @@
|
||||||
-->
|
-->
|
||||||
</table>
|
</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}">
|
|| model.issueManagement != null || model.ciManagement != null}">
|
||||||
|
|
||||||
<h2>Other Details</h2>
|
<h2>Other Details</h2>
|
||||||
<table>
|
<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}">
|
<c:if test="${model.organization != null}">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Organisation</th>
|
<th>Organisation</th>
|
||||||
|
|
Loading…
Reference in New Issue