Files
subtle-storm/app/views/tasks/new.html.slim
T
2025-07-14 01:31:08 +03:00

15 lines
346 B
Plaintext

h1 New task
= form_with model: @form do |form|
.field
= form.label :project_id
= form.select :project_id, Project.order(:name).map { |p| [p.name, p.id] }
.field
= form.label :title
= form.text_field :title
.field
= form.label :description
= form.rich_textarea :description
.submit
= form.submit 'Create task'