mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-04 20:10:16 +01:00
As a result, I'm going to redo the empty message changes I made in [164], and will see if I can find a more sensible way to implement them. The empty messages still appear (now also in the notes area if that's empty), but you need a refresh after Ajax changes to view or remove them. git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@165 a4c988fc-2ded-0310-b66e-134b36920a42
21 lines
842 B
Text
21 lines
842 B
Text
<div id="display_box">
|
|
<div id="new_actions" class="next_actions container" style="display:none">
|
|
<h2>Fresh actions (hit <a href="javascript:window.location.reload()">refresh</a> to sort)</h2>
|
|
</div>
|
|
<%= render :partial => "context/context", :collection => @contexts_to_show,
|
|
:locals => { :collapsible => true } %>
|
|
<%= render :partial => "todo/completed",
|
|
:locals => { :done => @done, :collapsible => true, :append_descriptor => nil } %>
|
|
</div><!-- End of display_box -->
|
|
|
|
<div id="input_box">
|
|
<%= render "shared/add_new_item_form" %>
|
|
<%= render "shared/sidebar" %>
|
|
</div><!-- End of input box -->
|
|
|
|
<% if @flash["confirmation"] -%>
|
|
<div class="confirmation"><%= @flash["confirmation"] %></div>
|
|
<% end -%>
|
|
<% if @flash["warning"] -%>
|
|
<div class="warning"><%= @flash["warning"] %></div>
|
|
<% end -%>
|