Created
March 21, 2013 10:56
-
-
Save Viswanathantv/5212212 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= form_for @rd_transaction, :html => { :class => 'form-horizontal' } do |f| %> | |
<div class="control-group"> | |
<%= f.label :rd_id, :class => 'control-label' %> | |
<div class="controls"> | |
<%= f.number_field :rd_id, :class => 'number_field' %> | |
</div> | |
</div> | |
<div class="control-group"> | |
<%= f.label :member_id, :class => 'control-label' %> | |
<div class="controls"> | |
<%= f.number_field :member_id, :class => 'number_field' %> | |
</div> | |
</div> | |
<div class="control-group"> | |
<%= f.label :amount_deposited, :class => 'control-label' %> | |
<div class="controls"> | |
<%= f.text_field :amount_deposited, :class => 'text_field' %> | |
</div> | |
</div> | |
<div class="control-group"> | |
<%= f.label :deposit_type, :class => 'control-label' %> | |
<div class="controls"> | |
<%= f.text_field :deposit_type, :class => 'text_field' %> | |
</div> | |
</div> | |
<div class="form-actions"> | |
<%= f.submit nil, :class => 'btn btn-primary' %> | |
<%= link_to t('.cancel', :default => t("helpers.links.cancel")), | |
rd_transactions_path, :class => 'btn' %> | |
</div> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment