Skip to content

Instantly share code, notes, and snippets.

@biographie
Created July 28, 2013 17:35
Show Gist options
  • Save biographie/6099390 to your computer and use it in GitHub Desktop.
Save biographie/6099390 to your computer and use it in GitHub Desktop.
<% for task in current_task %>
<% if task.due_date.to_date == DateTime.now.to_date %>
<strong>Today</strong>
<%= task.description %>
<% elsif task.due_date.to_date == (DateTime.now + 1.day).to_date %>
<strong>Tomorrow</strong>
<%= task.description %>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment