Sha256: 5d9fdf84c137bd4934441600843e575328fb51ac634387da21361a9a9440767c
Contents?: true
Size: 1.37 KB
Versions: 164
Compression:
Stored size: 1.37 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>Release</th> <th bst-table-column translate>Arch</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="module_stream in table.rows"> <td bst-table-cell> <a href="module_streams/{{ module_stream.id }}"> {{ module_stream.name }} </a> </td> <td bst-table-cell>{{ module_stream.version }}</td> <td bst-table-cell>{{ module_stream.stream }}</td> <td bst-table-cell>{{ module_stream.arch }}</td> </tr> </tbody> </table> </div>
Version data entries
164 entries across 164 versions & 1 rubygems