diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-17 20:04:56 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-17 20:04:56 +0000 |
commit | a9fdcbc3e7fb43be9b5b25b56c80d11cec970f79 (patch) | |
tree | 0e746acf8283100ac1ae9559263944fcb21c2d28 /app/controllers | |
parent | a3044438caa594a826e49bb08b745c093bcb51cc (diff) |
Gone for light green table and no bootstrap
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/events_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/events_controller.rb b/app/controllers/events_controller.rb index d9e390a..058486d 100644 --- a/app/controllers/events_controller.rb +++ b/app/controllers/events_controller.rb @@ -4,7 +4,7 @@ class EventsController < ApplicationController # GET /events or /events.json def index @events = Event.all.order(date: :asc) - @january_dates = Date.new(2023, 01, 01)..Date.new(2023, 01, 31) + @january_dates = Date.new(2024, 01, 01)..Date.new(2024, 01, 31) render "index" end |