Skip to content

Instantly share code, notes, and snippets.

@austinbv
Created November 4, 2011 15:28
Show Gist options
  • Save austinbv/1339588 to your computer and use it in GitHub Desktop.
Save austinbv/1339588 to your computer and use it in GitHub Desktop.
<%
# all your comment stuff can go here
%>
<%
# all the stuff to display a single task can go here
%>
<%
# all the stuff to display a single member can go here
%>
#...
def show
@new_tasks = tasks.newly_added_tasks
@new_comments = comments.newly_added
@pending_members = project_memberships.pending_joins
#...
end
<%
# projects/show.html.erb
# ...
%>
<%= render partial: "new_task", collection: @new_tasks %>
<%= render partial: "new_comment", collection: @new_comments %>
<%= render partial: "pending_member", collection: @pending_members %>
<%
# ...
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment