--- loncom/interface/statistics/lonsubmissiontimeanalysis.pm 2006/05/01 19:29:13 1.25 +++ loncom/interface/statistics/lonsubmissiontimeanalysis.pm 2006/05/05 20:03:43 1.26 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonsubmissiontimeanalysis.pm,v 1.25 2006/05/01 19:29:13 albertel Exp $ +# $Id: lonsubmissiontimeanalysis.pm,v 1.26 2006/05/05 20:03:43 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -174,6 +174,7 @@ sub analyze_times { # Get the data my $SubData = &Apache::loncoursedata::get_response_time_data ([&Apache::lonstatistics::get_selected_sections()], + [&Apache::lonstatistics::get_selected_groups()], $Apache::lonstatistics::enrollment_status, $symb,$part); if (! defined($SubData) || ! ref($SubData)) { @@ -400,6 +401,7 @@ sub CreateInterface { $Str .= '
'.&mt('Sections').' | '; + $Str .= ''.&mt('Groups').' | '; $Str .= ''.&mt('Enrollment Status').' | '; $Str .= ''."\n"; + $Str .= &Apache::lonstatistics::GroupSelect('Group','multiple',4); + $Str .= ' | '; + # $Str .= ''; $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,4); $Str .= ' | ';
---|