Sha256: 886c78554399088b03fca5082fbbf1d6284913dc5b5c05a0e0adbf058bb5c70c
Contents?: true
Size: 1.61 KB
Versions: 35
Compression:
Stored size: 1.61 KB
Contents
<div data-extend-template="layouts/partials/table.html"> <div data-block="search"> <input type="text" class="form-control" placeholder="{{ 'Filter' | translate }}" ng-model="dockerTagFilter"/> </div> <span data-block="no-rows-message" translate> This Container Image Tag is not present in any Lifecycle Environments. </span> <span data-block="no-search-results-message" translate> Your search returned zero Lifecycle Environments. </span> <div data-block="table"> <table bst-table="table" class="table table-striped table-bordered" ng-class="{'table-mask': table.working}"> <thead> <tr bst-table-head> <th bst-table-column="environment" translate>Environment</th> <th bst-table-column="version" translate>Content View Version</th> <th bst-table-column="path" translate>Published At</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="repo in table.rows | filter:dockerTagFilter"> <td bst-table-cell> <a ui-sref="environment.details({environmentId: repo.kt_environment.id})"> {{ repo.kt_environment.name }} </a> </td> <td bst-table-cell> <a ui-sref="content-view.version.docker({contentViewId: repo.content_view_version.content_view_id, versionId: repo.content_view_version.id})"> {{ repo.content_view_version.name }} </a> </td> <td bst-table-cell> {{ repo.full_path }}:{{ tag.name }} </td> </tr> </tbody> </table> </div> </div>
Version data entries
35 entries across 35 versions & 1 rubygems