expertiza/expertiza

View on GitHub
app/models/section_header.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class SectionHeader < QuestionnaireHeader
  def complete(_count, _answer = nil)
    html = '<b style="color: #986633; font-size: x-large">' + txt + '</b><br/><br/>'
    html.html_safe
  end

  def view_completed_question(_count, _answer)
    html = '<b style="color: #986633; font-size: x-large">' + txt + '</b>'
    html.html_safe
  end
end