Sha256: 7ab59afe7e017e2cfbbbb4846697236b32953cf4cce562b1e53a9b0b8d0dc14c
Contents?: true
Size: 1.7 KB
Versions: 31
Compression:
Stored size: 1.7 KB
Contents
<table class="table table-striped table-bordered" bst-table="table" ng-class="{'table-mask': table.working}" ng-show="table.rows.length > 0"> <thead> <tr bst-table-head> <th bst-table-column><span translate>Name</span></th> <th bst-table-column><span translate>Composite View?</span></th> <th bst-table-column><span translate>Last Published</span></th> <th bst-table-column><span translate>Environments</span></th> <th bst-table-column><span translate>Repositories</span></th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="contentView in table.rows"> <td bst-table-cell> <a ui-sref="content-views.details.versions({contentViewId: contentView.id})"> {{ contentView.name }} </a> </td> <td bst-table-cell> <span ng-show="contentView.composite" translate>Yes</span> <span ng-hide="contentView.composite" translate>No</span> </td> <td bst-table-cell> <span ng-show="contentView.last_published">{{ contentView.last_published | date:"medium" }}</span> <span ng-hide="contentView.last_published" translate> Not yet published </span> </td> <td bst-table-cell> <span ng-show="contentView.environments.length !== 0" ng-repeat="environment in contentView.environments" ng-if="environment.permissions.readable"> {{ environment.name }}<span ng-if="!$last">, </span> </span> <span ng-show="contentView.environments.length === 0" translate> Not yet published </span> </td> <td bst-table-cell class="number-cell">{{ contentView.repositories.length }}</td> </tr> </tbody> </table>
Version data entries
31 entries across 31 versions & 1 rubygems