class CalendarSection

Public Instance Methods

important_dates() click to toggle source
# File lib/buweb/calendar_section.rb, line 24
def important_dates
  # Only show dates that start during the section
  calendar.important_dates.where({
    :start_date.gte => start_date,
    :start_date.lte => end_date,
  })
end
to_s() click to toggle source
# File lib/buweb/calendar_section.rb, line 20
def to_s
  title
end