Sha256: 72d85b2eaa767f58e13e757b9c739be1dbf707c829983d595eb643261971a26c

Contents?: true

Size: 831 Bytes

Versions: 3

Compression:

Stored size: 831 Bytes

Contents

%h3= application_type.display_name
- if application_type.description.html_safe?
  = application_type.description
- else
  %p= application_type.description

- if application_type.website
  %p Website: #{link_to application_type.website, application_type.website}

- unless application_type.cartridge?
  %p 
    Cartridges:
    - if application_type.cartridges.present?
      = map_to_sentence(application_type.cartridges) do |c|
        - if missing_cartridges.include?(c)
          %span.text-warning{:title => "OpenShift could not locate any cartridges that match '#{c}'"}= c
        - else
          = c
    - else
      %span.text-warning{:title => "No cartridges specified"} none

- if application_type.learn_more_url
  %p= link_to "Learn more", application_type.learn_more_url

= application_type_tags(application_type.tags)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openshift-origin-console-1.3.4 app/views/application_types/_persisted.html.haml
openshift-origin-console-1.3.3 app/views/application_types/_persisted.html.haml
openshift-origin-console-1.3.2 app/views/application_types/_persisted.html.haml