# File app/models/proposal.rb, line 33
  def in_conference_cfp_period
    return true if self.conference and self.conference.accepts_proposals?
    self.errors.add(:conference_id,
                    _('Call for papers period for this conference is ' +
                      'not current'))
    false
  end