Sha256: bbc24d832adc031865715b4ed1ecc21125a09ede628da2a49f16ec60cbb0431d

Contents?: true

Size: 948 Bytes

Versions: 2

Compression:

Stored size: 948 Bytes

Contents

<!DOCTYPE html>
<html>
  <head>
    <title>KPM</title>
    <%= yield :scripts %>
    <%= stylesheet_link_tag 'application', :media => 'all' %>
    <%= javascript_include_tag 'application' %>
    <%= csrf_meta_tags %>
  </head>
  <body>
    <div class="container">
      <div class="container-fluid">
      <%- # :alert used by devise  -%>
      <% [:error, :alert].each do |key| %>
          <% if flash[key] %>
              <div class="row">
                <div class="col-md-10 col-md-offset-2">
                  <div class="alert alert-error"><%= flash[key] %></div>
                </div>
              </div>
          <% end %>
      <% end %>
      <% if flash[:notice] %>
          <div class="row">
            <div class="col-md-10 col-md-offset-2">
              <div class="alert alert-info"><%= flash[:notice] %></div>
            </div>
          </div>
      <% end %>
      <%= yield %>
      </div>
    </div>
  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
killbill-kpm-ui-3.0.3 app/views/kpm/layouts/kpm_application.html.erb
killbill-kpm-ui-3.0.2 app/views/kpm/layouts/kpm_application.html.erb