Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created August 16, 2010 10:27
Show Gist options
  • Save jlebrech/526756 to your computer and use it in GitHub Desktop.
Save jlebrech/526756 to your computer and use it in GitHub Desktop.
<div class="root-box">
<h1><%= link_to 'Companies', companies_path %></h1>
<div class="company-box">
<h1><%= h @company.name %></h1>
<% if [email protected]? %>
<h2><%= h @company.user.username %></h2>
<% end %>
<%= link_to 'Edit', edit_company_path(@company) %>
<h2>Projects</h2>
<div class="projects-index">
<% @company.projects.each do |p| %>
<% if !p.name.nil? %>
<div class="project-box">
<%= link_to p.name, p %>
<%= link_to 'x', p, :confirm => 'Are you sure?', :method => :delete %>
<% if !p.tasks.empty? %>
<div class="tasks-index">
<h3>Tasks:</h3>
<% p.tasks.each do |t| %>
<div class="task-box">
<%= link_to t.name, t %>
<%= link_to 'x', t, :confirm => 'Are you sure?', :method => :delete %>
</div>
<% end %>
</div>
<% end %>
</div>
<% end %>
<% end %>
<div class="project-box new-box">
<% form_for @company do |c| %>
<% c.fields_for :projects, @company.projects.last do |p| %>
<%= p.text_field :name %>
<% end %>
<%= submit_tag '+' %>
<% end %>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment