Sha256: da121642c9c337d2671fb48ec1aebdb0b129ace719f9b3a76939c3badda8fc04

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

<h2>Editing item</h2>

<% form_for :item, @item, :url => item_path(@item), :html => {:method => :put} do |f| %>
  <%= f.error_messages %>

  <p>
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </p>
  <p>
    <%= f.label :amount %><br />
    <%= f.text_field :amount %>
  </p>
  <p>
    <%= f.label :type %><br />
    <%= f.select :type, %w(Expense Income Move).map{|x| [x, x]}  %>
  </p>
  <p>
    <%= f.label :category_id %><br />
    <%= f.select :category_id, @categories.map{|c| [c.name, c.id]}  %>
  </p>
  <p>
    <%= f.label :date %><br />
    <%= f.text_field :date %>
  </p>
  <p>
    <%= f.label :position %><br />
    <%= f.text_field :position %>
  </p>
  <p id="one_account">
    <%= f.label :account_id %><br />
    <%= f.select :account_id, @accounts.map{|a| [a.name, a.id]}  %>
  </p>
  <p id="two_accounts">
    <%= f.label :account_id_from %><br />
    <%= f.select :account_id_from, @accounts.map{|a| [a.name, a.id]}  %>
    → <%= f.select :account_id_to, @accounts.map{|a| [a.name, a.id]}  %>
  </p>
  <p>
    <%= f.submit 'Update' %>
  </p>
<% end %>

<%= link_to 'Show', @item %> |
<%= link_to 'Back', items_path %>

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
yhara-moneyrail-0.0.2 app/views/items/edit.html.erb
moneyrail-0.1.6 app/views/items/edit.html.erb
moneyrail-0.1.5 app/views/items/edit.html.erb
moneyrail-0.1.4 app/views/items/edit.html.erb
moneyrail-0.1.2 app/views/items/edit.html.erb
moneyrail-0.1.1 app/views/items/edit.html.erb
moneyrail-0.1.0 app/views/items/edit.html.erb
moneyrail-0.0.2 app/views/items/edit.html.erb