1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-30 02:29:39 +02:00
Maybe/app/views/account/valuations/_form.html.erb

18 lines
612 B
Text
Raw Normal View History

<%# locals: (entry:) %>
<%= styled_form_with model: entry, url: account_valuations_path, class: "space-y-4" do |form| %>
<%= form.hidden_field :account_id %>
<% if entry.errors.any? %>
<%= render "shared/form_errors", model: entry %>
<% end %>
<div class="space-y-3">
<%= form.hidden_field :name, value: "Balance update" %>
<%= form.date_field :date, label: true, required: true, value: Date.current, min: Account::Entry.min_supported_date, max: Date.current %>
<%= form.money_field :amount, label: t(".amount"), required: true %>
</div>
<%= form.submit t(".submit") %>
<% end %>