Sha256: 6c075cb529a4bd52924dca2fdda238b0ce065a2e92c5fe9c6a9ace6b333c30a8

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

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

3 entries across 3 versions & 1 rubygems

Version Path
killbill-payment-test-ui-3.0.4 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-3.0.3 app/views/payment_test/layouts/payment_test_application.html.erb
killbill-payment-test-ui-3.0.2 app/views/payment_test/layouts/payment_test_application.html.erb