I have a table of values, tasks, which I need to pull from a database, and then order as follows:
<section class="entry-content">
<header>
<h4>Daily</h4>
</header>
<ul class="task-list" id="daily-tasks">
<% @daily.each do |task| %>
<% if task.status == "incomplete" %>
<li><% = task.title %></li>
<% end %>
<% end %>
<% @daily.each do |task| %>
<% if task.status == "complete" %>
<li><% = task.title %></li>
<% end %>
<% end %>
</ul>
</section><!--.entry-content-->
I also have once, weekly, monthly, and potentially yearly tasks.
I'm new to Ruby, so I'm looking for the best way of doing this, as my current code isn't ideal