Files
stopwatch/app/views/stopwatch_timers/_new.html.erb
2021-10-05 11:26:51 +08:00

17 lines
592 B
Plaintext

<h3 class="title"><%= l(:button_log_time) %> - <%= format_date User.current.today %></h3>
<% if @entries %>
<%= render partial: 'stopwatch_timers/entries_list', locals: { entries: @entries } %>
<% end %>
<%= labelled_form_for @time_entry, url: stopwatch_timers_path, method: :post, remote: true do |f| %>
<% @time_entry.hours ||= 0 %>
<%= render partial: 'stopwatch_timers/entry_form', locals: { f: f } %>
<p class="buttons">
<%= submit_tag l(:button_create) %>
<%#= submit_tag l(:button_cancel), name: nil, onclick: "hideModal(this);", type: 'button' %>
</p>
<% end %>