Sha256: 52ffd7ee07b0a05933879396655cd28f426a4a2482c0592e3b55efddb84febc7

Contents?: true

Size: 1.68 KB

Versions: 8

Compression:

Stored size: 1.68 KB

Contents

<div data-extend-template="layouts/panel.html">
  <section data-block="panel" class="details-page">
    <div ng-show="panel.error" bst-alerts error-messages="errorMessages"></div>

    <div ng-hide="panel.error">
      <ol class="breadcrumb">
        <li>
          <a ui-sref="environments.index" translate>Environments List</a>
        </li>

        <li class="active">
          <a translate>
            {{ environment.name }} Environment
          </a>
        </li>
      </ol>

      <div class="row">
        <h1 class="col-sm-12">
          <span translate>Environment: {{ environment.name }}</span>
          <button ng-show="!environment.library && !environment.successor"
                  ng-click="remove(environment)"
                  class="btn btn-default fr">
            <i class="fa fa-trash-o inline-icon"></i>
            Remove Environment
          </button>
        </h1>
      </div>

      <div bst-alerts success-messages="successMessages" error-messages="errorMessages"></div>

      <nav>
        <ul class="nav nav-tabs">

          <li ng-repeat="type in contentTypes" ng-class="{active: isState('environments.environment.' + type.state)}">
            <a ng-href="{{ $state.href('environments.environment.' + type.state, {environmentId: environment.id}) }}">
              <span translate>{{ type.display }}</span>
            </a>
          </li>

          <li ng-class="{active: isState('environments.environment.details')}">
            <a ui-sref="environments.environment.details({environmentId: environment.id})">
              <span translate>Details</span>
            </a>
          </li>

        </ul>
      </nav>

      <div ui-view></div>
    </div>
  </section>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
katello-3.3.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.0.rc1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html
katello-3.3.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html