# File app/helpers/attendance_adm_helper.rb, line 66
  def certif_format_line_entry(line)
    columns = [line.human_y_pos, line.human_x_pos, line.human_max_width, 
               CertifFormatLine::ContentSources[line.content_source],
               line.content, line.font_size, line.justification,
               link_to(_('Delete'), 
                       {:action => 'delete_certif_format_line', 
                         :format_id => @format, :line_id => line},
                       {:confirm => _('Are you sure you want to delete ' +
                                      'this line?'),
                         :method => :post})
              ]

    ['<tr>', 
     columns.map { |elem| '<td>%s</td>' % elem}, 
     '</tr>'].join("\n")
  end