require 'action_view' module WoopleTheme module Dashboard class ElectivesSectionPresenter < SectionPresenter enforce_definitions :electives_history, :electives_exceptions, :points_earned, :points_total def render_history yield if render?(@delegate.electives_history) end def render_exceptions yield if render?(@delegate.electives_exceptions) end private def render?(tab) tab.count > 0 end end end end