mirror of https://github.com/apache/archiva.git
MRM-770 Related. Display classifier (use table because of messy alignment with lot of information)
This commit is contained in:
parent
25db694b6f
commit
70acb56d0c
|
@ -429,8 +429,8 @@ repository.selected.missing=You must select a repository
|
|||
browse.artifact.content.view.tooltip=View Artifact Content
|
||||
browse.artifact.content.delete.tooltip=Delete Artifact
|
||||
browse.artifact.content.download.tooltip=Download Artifact
|
||||
|
||||
|
||||
browse.artifact.size=Size
|
||||
browse.artifact.classifier=Classifier
|
||||
#login
|
||||
login.username.placehoder=Username
|
||||
login.password.placehoder=Password
|
||||
|
|
|
@ -953,32 +953,50 @@
|
|||
<script id="artifact-details-download-content_tmpl" type="text/html">
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="span5">
|
||||
<ul id="artifact-download-list-files" class="package-list">
|
||||
{{each(i, row) artifacts()}}
|
||||
<li>
|
||||
<img src="images/system-search-16-16.png" class="cursor-hand" id="${row.classifier}:${row.version}:${row.packaging}"
|
||||
title="${$.i18n.prop('browse.artifact.content.view.tooltip')}"/>
|
||||
{{if deleteKarma}}
|
||||
<a href="#" data-bind="click: function(){deleteArtifact(row)}">
|
||||
<img src="images/trash.png" title="${$.i18n.prop('browse.artifact.content.delete.tooltip')}"/>
|
||||
</a>
|
||||
|
||||
<a href="${row.url}">
|
||||
<img src="images/drive-removable-media-16-16.png" title="${$.i18n.prop('browse.artifact.content.download.tooltip')}"/>
|
||||
</a>
|
||||
|
||||
<span class="text-info">${row.packaging}:${row.version} - ${row.size}</span>
|
||||
{{else}}
|
||||
<a href="${row.url}">
|
||||
<img src="images/drive-removable-media-16-16.png" title="${$.i18n.prop('browse.artifact.content.download.tooltip')}"/>
|
||||
</a>
|
||||
|
||||
<span class="text-info">${row.packaging}:${row.version} - ${row.size}</span>
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<div class="span12">
|
||||
<table id="artifact-download-list-files" class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th> </th>
|
||||
{{if deleteKarma}}<th> </th>{{/if}}
|
||||
<th> </th>
|
||||
<th>${$.i18n.prop('browse.artifact.version')}</th>
|
||||
<th>${$.i18n.prop('browse.artifact.packaging')}</th>
|
||||
<th>${$.i18n.prop('browse.artifact.classifier')}</th>
|
||||
<th>${$.i18n.prop('browse.artifact.size')}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{each(i, row) artifacts()}}
|
||||
<tr>
|
||||
<td>
|
||||
<img src="images/system-search-16-16.png" class="cursor-hand" id="${row.classifier}:${row.version}:${row.packaging}"
|
||||
title="${$.i18n.prop('browse.artifact.content.view.tooltip')}"/>
|
||||
</td>
|
||||
{{if deleteKarma}}
|
||||
<td>
|
||||
<a href="#" data-bind="click: function(){deleteArtifact(row)}">
|
||||
<img src="images/trash.png" title="${$.i18n.prop('browse.artifact.content.delete.tooltip')}"/>
|
||||
</a>
|
||||
</td>
|
||||
{{/if}}
|
||||
<td>
|
||||
<a href="${row.url}">
|
||||
<img src="images/drive-removable-media-16-16.png" title="${$.i18n.prop('browse.artifact.content.download.tooltip')}"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>${row.version}</td>
|
||||
<td>${row.packaging}</td>
|
||||
{{if row.classifier }}
|
||||
<td>${row.classifier}</td>
|
||||
{{else}}
|
||||
<td> </td>
|
||||
{{/if}}
|
||||
<td>${row.size}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="span7">
|
||||
<div id="artifact_content_tree">
|
||||
|
|
Loading…
Reference in New Issue