class Admission::ApplicantAgreementDecorator < ApplicationDecorator
  def response
    "I <strong>#{action}</strong> to the #{agreement.name}".html_safe
  end

  def action
    object.response ? 'agree' : 'disagree'
  end
end
