This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources :companies do | |
resource :tasks | |
resources :contacts do | |
end | |
end | |
resources :contacts do | |
resources :tasks | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources :companies do | |
resource :tasks | |
resources :contacts do | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TasksController < ApplicationController | |
def index | |
end | |
def show | |
end | |
def new |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Add New Company</h1> | |
<%= form_for(@company) do |f| %> | |
<%= f.label :name %> | |
<%= f.text_field :name %> | |
<%= f.label :address %> | |
<%= f.text_field :address %> | |
<%= f.nested_fields_for :phone_numbers do |f| | |
render 'phone', f: f |
NewerOlder