Sha256: 356b6c30acc3295889d82b2a6924b560c71c49bba4fb9dad08f39ec3231462b5
Contents?: true
Size: 1.75 KB
Versions: 32
Compression:
Stored size: 1.75 KB
Contents
<div data-extend-template="layouts/details-nutupane.html"> <div data-block="actions"> <button class="btn btn-primary fr" ng-disabled="detailsTable.numSelected === 0" ng-show="isState('content-views.details.filters.details.package_group.list') && permitted('edit_content_views', contentView)" ng-click="removePackageGroups(filter)"> <i class="fa fa-trash-o"></i> <span translate>Remove Package Group</span> </button> <button class="btn btn-primary fr" ng-disabled="detailsTable.numSelected === 0" ng-show="isState('content-views.details.filters.details.package_group.available') && permitted('edit_content_views', contentView)" ng-click="addPackageGroups(filter)"> <i class="fa fa-plus"></i> <span translate>Add Package Group</span> </button> </div> <div data-block="table"> <table class="table table-striped table-bordered" ng-class="{'table-mask': detailsTable.working}"> <thead> <tr bst-table-head row-select> <th bst-table-column><span translate>Name</span></th> <th bst-table-column><span translate>Product</span></th> <th bst-table-column><span translate>Repository</span></th> <th bst-table-column><span translate>Description</span></th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="packageGroup in detailsTable.rows" row-select="packageGroup"> <td bst-table-cell>{{ packageGroup.name }}</td> <td bst-table-cell>{{ packageGroup.repository.product.name }}</td> <td bst-table-cell>{{ packageGroup.repository.name }}</td> <td bst-table-cell>{{ packageGroup.description }}</td> </tr> </tbody> </table> </div> </div>
Version data entries
32 entries across 32 versions & 1 rubygems