Sha256: 46a313d7ef6da7e467ec7fb855df68d01fea1851ac7e719e3d733da6a3a31fea
Contents?: true
Size: 1.28 KB
Versions: 16
Compression:
Stored size: 1.28 KB
Contents
<span page-title ng-model="contentCredential">{{ 'Repositories 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 Products associated with this Content Credential. </span> <div data-block="table"> <table bst-table="table" class="table table-striped table-bordered"> <thead> <tr bst-table-head> <th bst-table-column="name" sortable><span translate>Name</span></th> <th bst-table-column="used_as" sortable><span translate>Used as</span></th> <th bst-table-column class="number-cell" translate>Repositories</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="product in table.rows"> <td bst-table-cell> <a ui-sref="product.info({productId: product.id})"> {{ product.name }} </a> </td> <td bst-table-cell> {{ product.used_as }} </td> <td bst-table-cell class="number-cell"> <a ui-sref="product.repositories({productId: product.id})"> {{ product.repository_count }} </a> </td> </tr> </tbody> </table> </div> </div>
Version data entries
16 entries across 16 versions & 1 rubygems