Sha256: 45fceeeb47b1098017e38e35fd194e120401bfac1d32fe29ea51cf8c6462672e
Contents?: true
Size: 1.44 KB
Versions: 25
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 Container Image Tags that match the criteria. </span> <span data-block="no-search-results-message" translate> Your search returned zero Container Image Tags. </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>Product</th> <th bst-table-column translate>Repository</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="dockerTag in table.rows"> <td bst-table-cell> <a ng-href="/docker_tags/{{ dockerTag.id }}">{{ dockerTag.name }}</a> </td> <td bst-table-cell> <a ng-href="/products/{{ dockerTag.product.id }}/repositories/{{ dockerTag.repository.id }}">{{ dockerTag.product.name }}</a> </td> <td bst-table-cell>{{ dockerTag.repository.full_path }}</td> </tr> </tbody> </table> </div>
Version data entries
25 entries across 25 versions & 1 rubygems