Sha256: 353af04865c46ed314c2a0efb1b10f1f1c8ac93514f03afb6c5d2d5b99cec6e7
Contents?: true
Size: 1.4 KB
Versions: 29
Compression:
Stored size: 1.4 KB
Contents
<table class="table table-striped" ng-class="{'table-mask': productTable.working}"> <thead> <tr bst-table-head row-select> <th bst-table-column="name" sortable><span translate>Name</span></th> <th bst-table-column="description"><span translate>Description</span></th> <th bst-table-column="sync_status"><span translate>Sync Status</span></th> <th bst-table-column="sync_plan"><span translate>Sync Plan</span></th> <th bst-table-column class="number-cell"><span translate>Repositories</span></th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="product in productTable.rows" row-select="product"> <td bst-table-cell> <a ui-sref="products.details.repositories.index({productId: product.id})"> {{ product.name }} </a> <i class="fa fa-chevron-right selected-icon" ng-show="product.selected"></i> </td> <td bst-table-cell>{{ product.description }}</td> <td bst-table-cell> <div ng-include="'products/views/partials/product-table-sync-status.html'"></div> </td> <td bst-table-cell> {{ product.sync_plan.name }} <span ng-hide="product.sync_plan" translate>None</span> <span ng-show="product.sync_plan"> ({{ product.sync_plan.interval }}) </span> </td> <td bst-table-cell class="number-cell">{{ product.repository_count }}</td> </tr> </tbody> </table>
Version data entries
29 entries across 29 versions & 1 rubygems