Files
subtle-storm/app/views/projects/_form.html.slim
T
2025-06-22 00:52:49 +03:00

14 lines
273 B
Plaintext

= form_with model: @project do |form|
.field
= form.label :code
= form.text_field :code
.field
= form.label :name
= form.text_field :name
.field
= form.label :description
= form.rich_textarea :description
.submit
= form.submit 'Submit'