mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-18 07:05:28 +01:00
14 lines
627 B
Text
14 lines
627 B
Text
<%
|
|
suppress_button ||= false
|
|
%>
|
|
<%= link_to(image_tag( 'blank.png', :width=>'16', :height=>'16', :border=>'0' ), "#", {:class => 'show_successors', :title => 'Show successors'}) unless suppress_button %>
|
|
|
|
<div class="todo_successors" id="<%= dom_id(item, 'successors') %>" style=<%= suppress_button ? "display:display" : "display:none" %> >
|
|
<%= render :partial => "todos/successor",
|
|
:collection => item.pending_successors,
|
|
:locals => { :todo => item,
|
|
:parent_container_type => parent_container_type,
|
|
:suppress_dependencies => true }
|
|
%>
|
|
</div>
|
|
|