Sha256: 698c20d2eba21c8f3eda678453018e07dfdecf8280a6c1cfbbb00be06387748e
Contents?: true
Size: 1.44 KB
Versions: 15
Compression:
Stored size: 1.44 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" translate> There are no module streams that match the criteria. </span> <span data-block="no-search-results-message" translate> Your search returned zero module streams. </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
15 entries across 15 versions & 1 rubygems