mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-10 17:34:22 +01:00
the span with class m_t and m_t_d and its styling are no longer needed mobile todo lists need to be wrapped in ul element. fixing up missing or unclosed
11 lines
359 B
Text
11 lines
359 B
Text
<% if @not_done_todos.empty? -%>
|
|
<p><%= t('todos.no_incomplete_actions') %></p>
|
|
<% else -%>
|
|
<%= render :partial => "contexts/mobile_context", :collection => @contexts_to_show -%>
|
|
<% end -%>
|
|
<% unless @done.nil? -%>
|
|
<h2><%= t('todos.completed_actions') %></h2>
|
|
<ul class="c">
|
|
<%= render :partial => "todos/mobile_todo", :collection => @done %>
|
|
</ul>
|
|
<% end %>
|