Sha256: 27b25ebb4d4d17bd8898cccb18b3615cc46daefe674efa4de3a0e8841ee822e1
Contents?: true
Size: 1.06 KB
Versions: 25
Compression:
Stored size: 1.06 KB
Contents
<span page-title ng-model="gpgKey">{{ 'Products for ' | translate }} {{ gpgKey.name }}</span> <div data-extend-template="layouts/partials/table.html"> <span data-block="no-rows-message" translate> You currently don't have any Repositories associated with this GPG Key. </span> <div data-block="table"> <table class="table table-striped table-bordered" ng-show="gpgKey.repositories.length > 0"> <thead> <tr> <th translate>Name</th> <th translate>Product</th> <th translate>Type</th> </tr> </thead> <tbody> <tr ng-repeat="repository in table.rows"> <td> <a ui-sref="repository.info({productId: repository.product.id, repositoryId: repository.id})">{{ repository.name }}</a> </td> <td> <a ui-sref="product.repositories({productId: repository.product.id})"> {{ repository.product.name }} </a> </td> <td>{{ repository.content_type }}</td> </tr> </tbody> </table> </div> </div>
Version data entries
25 entries across 25 versions & 1 rubygems