# File app/helpers/conferences_adm_helper.rb, line 17
  def row_for_timeslot_listing(tslot)
    res = [tslot.short_start_time, tslot.effective_tolerance_pre,
           tslot.effective_tolerance_post, tslot.attendances.size,
           tslot.room.name,
           link_to(_('Delete'),
                   { :action => 'destroy_timeslot', 
                     :timeslot_id => tslot.id, :id => @conference.id },
                    {:confirm => _('Are you sure you want to permanently ' +
                                   'delete this timeslot? This will also ' +
                                   'destroy any attendances it has recorded'),
                     :method => :post} ) ]

    [table_row, res.map {|col| "<td>#{col}</td>"}, end_table_row].join("\n")
  end