Sha256: 32b6dd49c796144dc60982dba78f9819771bdb6922682ff16693f69f3d060f5f
Contents?: true
Size: 1.54 KB
Versions: 30
Compression:
Stored size: 1.54 KB
Contents
<span page-title ng-model="repository">{{ 'View Docker Tags for Repository:' | translate }} {{ repository.name }}</span> <div data-block="messages"> <div bst-alert="success" ng-hide="generationTaskId === undefined"> <button type="button" class="close" ng-click="clearTaskId()">×</button> <p translate> Docker metadata generation has been initiated in the background. Click <a ng-href="{{ taskUrl() }}">Here</a> to monitor the progress. </p> </div> </div> <div data-extend-template="layouts/partials/table.html"> <div data-block="table"> <table class="table table-striped table-bordered" > <thead> <tr bst-table-head> <th bst-table-column="name">{{ "Name" | translate }}</th> <th bst-table-column="schema_version">{{ "Available Schema Versions" | translate }}</th> <th bst-table-column="product">{{ "Product Name" | translate }}</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="tag in table.rows"> <td bst-table-cell> <a ui-sref="docker-tag.info({tagId: tag.id})"> {{ tag.name }} </a> </td> <td bst-table-cell> {{ availableSchemaVersions(tag) }} </td> <td bst-table-cell> {{ tag.product.name }} </td> </tr> </tbody> </table> </div> </div>
Version data entries
30 entries across 30 versions & 1 rubygems