# File app/helpers/conferences_helper.rb, line 79
  def conf_edit_links(conf)
    return '' unless @can_edit
    '<div class="conf-edit">' +
      [link_to(_('%d registered attendees') % conf.people.size,
               :controller => 'conferences_adm', 
               :action => 'people_list', :id => conf),
       link_to(_('Edit conference'), :controller => 'conferences_adm',
               :action => :show, :id => conf),
       link_to(_('Edit timeslots'),
               :controller => 'conferences_adm',
               :action => 'timeslots', 
               :id => conf)
      ].join(' | ') + '</div>'
  end