Created
March 30, 2015 16:08
-
-
Save barnes7td/56438d32c853bc78dcf2 to your computer and use it in GitHub Desktop.
Days Left in Rails (with a 7 day time frame)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For Blocitoff items | |
class Item < ActiveRecord::Base | |
belongs_to :list | |
def days_to_complete | |
7.days | |
end | |
def due_date | |
created_at.to_date + days_to_complete | |
end | |
def days_left | |
(due_date - DateTime.now.to_date).to_i | |
end | |
end | |
# ItemsHelper | |
module ItemsHelper | |
def remaining_time(days_left) | |
if days_left > 1 | |
"#{days_left} days" | |
elsif days_left == 0 | |
"Due Today" | |
else | |
"Overdue!" | |
end | |
end | |
end | |
# In the view | |
<%= remaining_time(item.days_left) %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment