mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-10 11:18:51 +01:00
13 lines
317 B
Text
13 lines
317 B
Text
<% if @not_done_todos.empty? -%>
|
|
<p><%= t('todos.no_actions.not_done') %></p>
|
|
<% else -%>
|
|
<%= render :partial => @contexts_to_show -%>
|
|
<% end -%>
|
|
<% unless @done.nil? -%>
|
|
<div id="completed_container">
|
|
<h2><%= t('todos.completed_actions') %></h2>
|
|
<ul class="c">
|
|
<%= render :partial => @done %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|