aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Lamy <olamy@apache.org>2012-03-06 18:32:45 +0000
committerOlivier Lamy <olamy@apache.org>2012-03-06 18:32:45 +0000
commit7e377a16bfafcd723166a09e1ccfb1cc721b4ee9 (patch)
tree98b37b99a2a44b4ab361d8e7f239a7251d3f69df
parentfcb3251ff65ba302bd22e131a11f36f74b2e08c6 (diff)
downloadarchiva-7e377a16bfafcd723166a09e1ccfb1cc721b4ee9.tar.gz
archiva-7e377a16bfafcd723166a09e1ccfb1cc721b4ee9.zip
[MRM-1577] rewrite legacy path admin page
simplify only delete and add. git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1297642 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/general-admin.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/general-admin.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/general-admin.html
index 50330b4d1..5e105daee 100644
--- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/general-admin.html
+++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/general-admin.html
@@ -48,9 +48,7 @@
{{each(i, columnDefinition) columns}}
<th>${ columnDefinition.headerText }</th>
{{/each}}
- <th>${$.i18n.prop('edit')}</th>
<th>${$.i18n.prop('delete')}</th>
- <th>${$.i18n.prop('modified')}</th>
</tr>
</thead>
<tbody>
@@ -63,23 +61,10 @@
</td>
{{/each}}
<td>
- <a href="#" data-bind="click: function(){ editLegacyArtifactPath(row) }">
- <img src="images/edit-find-22-22.png" title="${$.i18n.prop('edit')}">
- </a>
- </td>
- <td>
<a href="#" data-bind="click: function(){ removeLegacyArtifactPath(row) }">
<img src="images/edit-cut.png" title="${$.i18n.prop('delete')}"/>
</a>
</td>
- {{if row.modified()}}
- <td>
- <a href="#" data-bind="click: function(){ updateLegacyArtifactPath(row) }" class="btn btn-warning">${$.i18n.prop('save')}</a>
- </td>
- {{else}}
- <td></td>
- {{/if}}
-
</tr>
{{/each}}
</tbody>