Sha256: 6936b8329e3523e6256f9eb36323050756391b1fd2e71c0ba86fa87557145781
Contents?: true
Size: 1.15 KB
Versions: 56
Compression:
Stored size: 1.15 KB
Contents
<div data-extend-template="layouts/partials/table.html"> <div data-block="search-filter"> <select class="form-control" ng-model="contentView" ng-change="contentViewSelected(contentView)" ng-options="contentView.name for (id, contentView) in contentViews"></select> <select class="form-control" ng-model="repository" ng-change="repositorySelected(repository)" ng-options="repository.name for (id, repository) in repositories"></select> </div> <span data-block="no-rows-message" ng-bind="getNoRowsMessage()"></span> <span data-block="no-search-results-message" ng-bind="getZeroResultsMessage()"></span> <table data-block="table" class="table table-striped table-bordered"> <thead> <tr bst-table-head> <th bst-table-column translate>Name</th> <th bst-table-column translate>Version</th> <th bst-table-column translate>Architecture</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="deb in table.rows"> <td bst-table-cell>{{ deb.name }}</td> <td bst-table-cell>{{ deb.version }}</td> <td bst-table-cell>{{ deb.architecture }}</td> </tr> </tbody> </table> </div>
Version data entries
56 entries across 56 versions & 1 rubygems