--- loncom/interface/statistics/lonsurveyreports.pm 2006/05/01 19:29:13 1.11 +++ loncom/interface/statistics/lonsurveyreports.pm 2006/05/05 20:03:43 1.12 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonsurveyreports.pm,v 1.11 2006/05/01 19:29:13 albertel Exp $ +# $Id: lonsurveyreports.pm,v 1.12 2006/05/05 20:03:43 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -611,6 +611,7 @@ sub CreateInterface { $Str .= '
'.&mt('Sections').' | '; + $Str .= ''.&mt('Groups').' | '; $Str .= ''.&mt('Enrollment Status').' | '; $Str .= ''.&mt('Output Format').' | '; $Str .= ''.' '.' | '; @@ -620,6 +621,10 @@ sub CreateInterface { $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5); $Str .= ''; # + $Str .= ''."\n"; + $Str .= &Apache::lonstatistics::GroupSelect('Group','multiple',5); + $Str .= ' | '; + # $Str .= ''; $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5); $Str .= ' | ';
---|