Sha256: a2bea2dee612ac74a699257bbaf62047e3253fb7cc1b3a0a52f397532f6eca3b
Contents?: true
Size: 1.39 KB
Versions: 13
Compression:
Stored size: 1.39 KB
Contents
<span page-title ng-model="contentCredential">{{ 'Products for ' | translate }} {{ contentCredential.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 Content Credential. </span> <div data-block="search"> <input type="text" class="form-control" stop-event="click" placeholder="{{ 'Filter...' | translate }}" ng-model="contentCredentialRepositoryFilter"/> </div> <div data-block="table"> <table class="table table-striped table-bordered"> <thead> <tr> <th translate>Name</th> <th translate>Product</th> <th translate>Type</th> <th translate>Used as</th> </tr> </thead> <tbody> <tr ng-repeat="repository in table.rows | filter:contentCredentialRepositoryFilter"> <td> <a ui-sref="product.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> <td>{{ repository.usedAs }}</td> </tr> </tbody> </table> </div> </div>
Version data entries
13 entries across 13 versions & 1 rubygems