mirror of
https://github.com/apache/archiva.git
synced 2025-02-22 01:44:47 +00:00
use an icon for scan repository action
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1233594 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f1c30d228c
commit
469ff414be
Binary file not shown.
After Width: | Height: | Size: 912 B |
@ -64,9 +64,9 @@ <h2>${$.i18n.prop('administration.repositories')}</h2>
|
|||||||
{{each(i, columnDefinition) columns}}
|
{{each(i, columnDefinition) columns}}
|
||||||
<th title="${ columnDefinition.title }">${ columnDefinition.headerText }</th>
|
<th title="${ columnDefinition.title }">${ columnDefinition.headerText }</th>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
<th>${$.i18n.prop('release.included')}</th>
|
<th>Releases</th>
|
||||||
<th>${$.i18n.prop('snapshots.included')}</th>
|
<th>Snapshots</th>
|
||||||
<th>${$.i18n.prop('managedrepository.scan.now')}</th>
|
<th>Scan</th>
|
||||||
<th>${$.i18n.prop('edit')}</th>
|
<th>${$.i18n.prop('edit')}</th>
|
||||||
<th>${$.i18n.prop('delete')}</th>
|
<th>${$.i18n.prop('delete')}</th>
|
||||||
</tr>
|
</tr>
|
||||||
@ -79,20 +79,24 @@ <h2>${$.i18n.prop('administration.repositories')}</h2>
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
<td>
|
<td>
|
||||||
{{if row.releases() == true}}
|
{{if row.releases() == true}}
|
||||||
<img src="images/weather-clear.png"/>
|
<img src="images/weather-clear.png" title="${$.i18n.prop('release.included')}"/>
|
||||||
{{else}}
|
{{else}}
|
||||||
<img src="images/dialog-error.png"/>
|
<img src="images/dialog-error.png" title="${$.i18n.prop('release.notincluded')}"/>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
{{if row.snapshots() == true}}
|
{{if row.snapshots() == true}}
|
||||||
<img src="images/weather-clear.png"/>
|
<img src="images/weather-clear.png" title="${$.i18n.prop('snapshots.included')}"/>
|
||||||
{{else}}
|
{{else}}
|
||||||
<img src="images/dialog-error.png"/>
|
<img src="images/dialog-error.png" title="${$.i18n.prop('snapshots.notincluded')}"/>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</td>
|
</td>
|
||||||
<td><a href="#" data-bind="click: function(){ scanNow(row) }">${$.i18n.prop('managedrepository.scan.now')}</a></td>
|
<td>
|
||||||
|
<a href="#" data-bind="click: function(){ scanNow(row) }">
|
||||||
|
<img src="images/view-refresh.png" title="${$.i18n.prop('managedrepository.scan.now')}"/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
<td><a href="#" data-bind="click: function(){ editManagedRepository(row) }">${$.i18n.prop('edit')}</a></td>
|
<td><a href="#" data-bind="click: function(){ editManagedRepository(row) }">${$.i18n.prop('edit')}</a></td>
|
||||||
<td>
|
<td>
|
||||||
<a href="#" data-bind="click: function(){ removeManagedRepository(row) }">
|
<a href="#" data-bind="click: function(){ removeManagedRepository(row) }">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user