diff options
| author | Loic GUEGAN <loic@Manzerbredes.home> | 2016-05-06 14:24:15 +0200 |
|---|---|---|
| committer | Loic GUEGAN <loic@Manzerbredes.home> | 2016-05-06 14:24:15 +0200 |
| commit | 2856a776dbedfdef2ace3cd4b4c06d1e8ebe6151 (patch) | |
| tree | f10bf1f179790623ad7ba27a977125271c8e4b3a /client/partials/image/image.html | |
| parent | 664cddd4fa519c2e8a9233a36c0fd020f7142cd6 (diff) | |
Add image creation and suppression
Diffstat (limited to 'client/partials/image/image.html')
| -rw-r--r-- | client/partials/image/image.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/partials/image/image.html b/client/partials/image/image.html index a789ae8..1604b30 100644 --- a/client/partials/image/image.html +++ b/client/partials/image/image.html @@ -8,7 +8,7 @@ <div class="btn-group btn-group-md" role="group" aria-label="..."> - <button type="button" class="btn btn-default" ng-click="showUploadImageModal()">Upload</button> + <button type="button" class="btn btn-default" ng-click="showCreateImageModal()">Create Image</button> <button type="button" class="btn btn-default">Download</button> </div> <p></p> @@ -30,7 +30,7 @@ <td>{{ (image.size / 1048576).toFixed(2)}} MB</td> <td> <button type="button" class="btn btn-primary" ng-click="edit(image)">Edit</button> - <button type="button" class="btn btn-danger">Remove</button> + <button type="button" class="btn btn-danger" ng-click="deleteImage(image.id)">Remove</button> </td> </tr> |
