mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 03:30:13 +01:00
11 lines
594 B
Text
11 lines
594 B
Text
<div id="display_box">
|
|
<%= render :partial => "contexts/context", :object => @context, :locals => { :collapsible => false } %>
|
|
<% unless @max_completed==0 -%>
|
|
<%= render :partial => "todos/completed", :object => @done, :locals => { :suppress_context => true, :collapsible => false, :append_descriptor => t('contexts.last_completed_in_context', :number=>prefs.show_number_completed) } %>
|
|
<% end -%>
|
|
</div><!-- [end:display_box] -->
|
|
|
|
<div id="input_box">
|
|
<%= render :partial => "shared/add_new_item_form" %>
|
|
<%= render :file => "sidebar/sidebar.html.erb" %>
|
|
</div><!-- End of input box -->
|