mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-15 13:48:51 +01:00
12 lines
553 B
Text
12 lines
553 B
Text
<%= link_to(image_tag( 'blank.png', :width=>'16', :height=>'16', :border=>'0' ), "#", {:class => 'show_successors', :title => 'Show successors'}) %>
|
|
|
|
<div class="todo_successors" id="<%= dom_id(item, 'successors') %>">
|
|
<%= render :partial => "todos/successor",
|
|
:collection => item.pending_successors,
|
|
:locals => { :todo => item,
|
|
:parent_container_type => parent_container_type,
|
|
:suppress_dependencies => true,
|
|
:predecessor => item }
|
|
%>
|
|
</div>
|
|
|