Sha256: baf853779b03d3b1ab045b99cf0f4f6e6aef4ea4cc74c96fb292a263e48f5dd5

Contents?: true

Size: 803 Bytes

Versions: 4

Compression:

Stored size: 803 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <title>Deposit</title>
  <%= yield :scripts %>
  <%= stylesheet_link_tag 'application', :media => 'all' %>
  <%= javascript_include_tag 'application' %>
  <%= csrf_meta_tags %>
</head>
<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>
</body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
killbill-deposit-0.1.1 app/views/deposit/layouts/deposit_application.html.erb
killbill-deposit-1.0.1 app/views/deposit/layouts/deposit_application.html.erb
killbill-deposit-0.0.4 app/views/deposit/layouts/deposit_application.html.erb
killbill-deposit-0.0.3 app/views/deposit/layouts/deposit_application.html.erb