mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 19:48:48 +01:00
Mostly completed transition to full i18n Incorporated german translations by Ulf Klose <ulf.klose@gmail.com>
18 lines
886 B
Text
18 lines
886 B
Text
<div class="container tickler" id="tickler">
|
|
<h2>
|
|
<% if collapsible %>
|
|
<a href="#" class="container_toggle" id="toggle_deferred"><%= image_tag("collapse.png") %></a>
|
|
<% end %>
|
|
<%= t('todos.deferred_pending_actions') %> <%= append_descriptor ? append_descriptor : '' %>
|
|
</h2>
|
|
|
|
<div id="tickleritems" class="items toggle_target">
|
|
<div id="tickler-empty-nd" style="display:<%= deferred.empty? && pending.empty? ? 'block' : 'none'%>;">
|
|
<div class="message"><p><%= t('todos.no_deferred_pending_actions') %></p></div>
|
|
</div>
|
|
|
|
<%= render :partial => "todos/todo", :collection => deferred, :locals => { :parent_container_type => parent_container_type } %>
|
|
<%= render :partial => "todos/todo", :collection => pending, :locals => { :parent_container_type => parent_container_type } %>
|
|
|
|
</div><!-- [end:items] -->
|
|
</div><!-- [end:tickler] -->
|