Sha256: 7f8bb0529a6b11101e9c235af2bf0a72605d327660592b2ce4e1ab9531882a41
Contents?: true
Size: 1.94 KB
Versions: 5
Compression:
Stored size: 1.94 KB
Contents
<span page-title ng-model="hostCollection">{{ 'Add Content Hosts to: ' | translate }} {{ hostCollection.name }}</span> <div data-extend-template="layouts/partials/table.html"> <div data-block="list-actions"> <div ng-hide="hostCollection.readonly" class="nutupane-actions fr"> <button class="btn btn-default" translate ng-hide="denied('edit_hosts')" ng-disabled="disableAddButton()" ng-click="addSelected()"> {{ 'Add Selected' | translate }} </button> </div> </div> <span data-block="no-rows-message" translate> You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right. </span> <span data-block="no-search-results-message" translate> Your search returned zero Content Hosts. </span> <div data-block="table"> <table ng-class="{'table-mask': table.working}" class="table table-bordered table-striped" ng-show="table.rows.length > 0"> <thead> <tr bst-table-head row-select> <th bst-table-column="name" translate>Name</th> <th bst-table-column="environment" translate>Environment</th> <th bst-table-column="content_view" translate>Content View</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="host in table.rows"> <td class="row-select"> <input type="checkbox" ng-model="host.selected" ng-change="itemSelected(host)"/> </td> <td bst-table-cell > <a ui-sref="content-hosts.details.info({hostId: host.id})"> {{ host.name}} </a> </td> <td bst-table-cell >{{ host.content_facet_attributes.lifecycle_environment.name}}</td> <td bst-table-cell >{{ host.content_facet_attributes.name}}</td> </tr> </tbody> </table> </div> </div>
Version data entries
5 entries across 5 versions & 1 rubygems