Sha256: c25f8f8cdd8b66f269970a7cb204ed95c22d8f28cfa490ca4333905ad14c1d1f

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 KB

Contents

.block#block-tables
  .content
    %h2.title= "Environment #{h @environment.name}"
    .inner
      = partial("navigation", :active => "show")
      .content
        .inner
          .left
            %h3 Name
            = @environment.name
          .left
            %h3 Description
            = @environment.description
          .left
            %h3 Cookbook Version Constraints
            %table.table
              %tr
                %th.first Name
                %th.last Version Constraints
              - if @environment.cookbook_versions.empty?
                %tr
                  %td{:colspan => 2} This environment does not include any cookbook version constraints.
              - else
                - @environment.cookbook_versions.keys.sort.each do |name|
                  - versions = @environment.cookbook_versions[name]
                  %tr
                    %td= name
                    %td= versions
          .left
            %h3 Attributes
            = build_tree('attrs', @environment.attributes)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chef-server-webui-0.10.0.beta.6 app/views/environments/show.html.haml
chef-server-webui-0.10.0.beta.5 app/views/environments/show.html.haml
chef-server-webui-0.10.0.beta.4 app/views/environments/show.html.haml
chef-server-webui-0.10.0.beta.3 app/views/environments/show.html.haml
chef-server-webui-0.10.0.beta.2 app/views/environments/show.html.haml
chef-server-webui-0.10.0.beta.1 app/views/environments/show.html.haml
chef-server-webui-0.10.0.beta.0 app/views/environments/show.html.haml