Sha256: 43ac38061ba3084cdd9b0f05105bea6630b4901255afe0be70e3ab95441a1fd7
Contents?: true
Size: 1.32 KB
Versions: 40
Compression:
Stored size: 1.32 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 OSTree Branches that match the criteria. </span> <span data-block="no-search-results-message" translate> Your search returned zero OSTree Branches. </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>Commit</th> <th bst-table-column translate>Date</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="branch in table.rows"> <td bst-table-cell>{{ branch.name }}</td> <td bst-table-cell>{{ branch.version }}</td> <td bst-table-cell>{{ branch.commit }}</td> <td bst-table-cell>{{ branch.version_date }}</td> </tr> </tbody> </table> </div>
Version data entries
40 entries across 40 versions & 1 rubygems