mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
7 lines
340 B
Text
7 lines
340 B
Text
<%= form_with model: @my_module, url: my_module_path(@my_module, format: :json), remote: :true do |f| %>
|
|
<%= f.datetime_picker :due_date,
|
|
value: @my_module.due_date,
|
|
label: t('my_modules.due_date.label'),
|
|
clear: true,
|
|
time: true %>
|
|
<% end %>
|