mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-29 05:18:49 +01:00
20 lines
No EOL
797 B
Text
20 lines
No EOL
797 B
Text
<div id="display_box">
|
|
<div id="no_todos_in_view" class="container context" <%= "style=\"display:none\"" unless @not_done_todos.empty? %> >
|
|
<h2><%= t('todos.no_actions_found_title')%></h2>
|
|
<div class="message"><p><%= t('todos.no_actions_found') %></p></div>
|
|
</div>
|
|
<%= render(
|
|
:partial => "contexts/context",
|
|
:collection => @contexts_to_show,
|
|
:locals => { :collapsible => true }) -%>
|
|
<% unless @done.nil? -%>
|
|
<%= render(
|
|
:partial => "todos/completed",
|
|
:object => @done,
|
|
:locals => { :collapsible => true, :append_descriptor => nil }) -%>
|
|
<% end -%>
|
|
</div><!-- End of display_box -->
|
|
<div id="input_box">
|
|
<%= render :partial => "shared/add_new_item_form" %>
|
|
<%= render :file => "sidebar/sidebar.html.erb" %>
|
|
</div><!-- End of input box --> |