mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-20 16:06:10 +01:00
16 lines
No EOL
635 B
Text
16 lines
No EOL
635 B
Text
<%# Template Dependency: todos/collection -%>
|
|
<%# Template Dependency: contexts/context -%>
|
|
<%# Template Dependency: projects/project -%>
|
|
<% cache ["not_done", @not_done_todos.empty?] do -%>
|
|
<%= render partial: "empty_message_container", locals: {:show => @not_done_todos.empty?, :container_name => "not_done"} %>
|
|
<% end -%>
|
|
|
|
<%= show_grouped_todos %>
|
|
|
|
<% if @group_view_by == 'project' -%>
|
|
<%= show_todos_without_project(@todos_without_project) -%>
|
|
<% end -%>
|
|
|
|
<% cache [@done.first, "home_completed"] do %>
|
|
<%= show_done_todos(@done, {:parent_container_type => @group_view_by, :collapsible => true}) unless @done.nil? %>
|
|
<% end %> |