Sha256: 91f1996c7a6f36b84356c81d6c7dac9f9090cd0fbdf5ee916b57ac4828b08313

Contents?: true

Size: 854 Bytes

Versions: 6

Compression:

Stored size: 854 Bytes

Contents

<%= form_for(customer, url: url) do |f| %>
  <% if customer.errors.any? %>
    <div id="error_explanation" class="alert alert-danger">
      <h4 class="alert-heading"><%= pluralize(customer.errors.count, "error") %> prohibited this customer from being saved:</h4>
      <ul class="mb-0">
        <% customer.errors.full_messages.each do |message| %>
          <li><%= message %></li>
        <% end %>
      </ul>
    </div>
  <% end %>

  <div class="form-group">
    <%= f.label :email %>
    <%= f.email_field :email, required: true, class: 'form-control' %>
  </div>

  <div class="form-group">
    <%= f.label :account_balance %>
    <%= f.number_field :account_balance, class: 'form-control' %>
  </div>

  <%= link_to 'Cancel', tang.admin_customer_path(customer), class: 'btn btn-secondary' %>
  <%= f.submit class: 'btn btn-primary' %>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tang-0.2.2 app/views/tang/admin/customers/_form.html.erb
tang-0.2.1 app/views/tang/admin/customers/_form.html.erb
tang-0.2.0 app/views/tang/admin/customers/_form.html.erb
tang-0.1.0 app/views/tang/admin/customers/_form.html.erb
tang-0.0.9 app/views/tang/admin/customers/_form.html.erb
tang-0.0.8 app/views/tang/admin/customers/_form.html.erb