Project show and edit

This commit is contained in:
2025-06-22 00:52:49 +03:00
parent ab477cb37c
commit 717e64a034
12 changed files with 80 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
= 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'
+5
View File
@@ -0,0 +1,5 @@
h1
span Editing project
span= @project.name
= render 'form'
+3
View File
@@ -0,0 +1,3 @@
ul
- @projects.each do |project|
li= link_to project.name, project
+7
View File
@@ -0,0 +1,7 @@
h1= @project.name
section= @project.description
section
ul.links
li= link_to 'Edit', edit_project_path(@project)