You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

images.html 660B

1234567891011121314
  1. <div layout="column" layout-fill layout-align="top center">
  2. <div class="col-xs-12" lu-busy="images">
  3. <div class="col-xs-12">
  4. <md-checkbox ng-model="options.only_mine" ng-show="luticateAuthCache.getUser() != null" ng-change="reload()">
  5. Only my images
  6. </md-checkbox>
  7. </div>
  8. <div ng-repeat="image in images.Data" class="col-xs-3">
  9. <img ng-src="/api/images/{{image.Id}}" />
  10. <p>{{image.Name}}</p>
  11. <button class="btn btn-danger" ng-click="delete(image.Id)" ng-show="image.UserId == luticateAuthCache.getUser().Id">Delete</button>
  12. </div>
  13. </div>
  14. </div>