Sha256: 3b444c450e8f815f02820fb4fc92bf3486b884bac06038d64e68d7167ffc7635

Contents?: true

Size: 870 Bytes

Versions: 8

Compression:

Stored size: 870 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
    <title>PaymentTest</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

8 entries across 8 versions & 2 rubygems

Version Path
killbill-payment-test-ui-2.1.1 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-3.0.1 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-2.0.1 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-2.0.0 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-1.0.0 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-0.1.0 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-0.0.2 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-0.0.1 app/views/payment_test/layouts/payment_test_application.html.erb