';
$Str .= ''.
&Apache::lonstatistics::SectionSelect('Section','multiple',5).
' | ';
+ $Str .= ''.
+ &Apache::lonstatistics::GroupSelect('Group','multiple',5).
+ ' | ';
$Str .= ''.
&Apache::lonhtmlcommon::StatusOptions(undef,undef,5).
' | ';
@@ -967,51 +959,61 @@ sub DisplayClasslist {
$r->print($Str);
$r->rflush();
#
- my @Fields = ('fullname','username','domain','id','section','status');
+ my @Fields = ('fullname','username','domain','id','section','status','groups');
#
$Str = '';
+ my @selected_sections = &get_selected_sections();
if (! @Students) {
- if ($SelectedSections[0] eq 'all') {
- if (lc($ENV{'form.Status'}) eq 'any') {
- $Str .= ''.
- &mt('There are no students in the course.').
- '
';
- } elsif (lc($ENV{'form.Status'}) eq 'active') {
- $Str .= ''.
+ if ($selected_sections[0] eq 'all') {
+ if (lc($env{'form.Status'}) eq 'active') {
+ $Str .= '
'.
&mt('There are no currently enrolled students in the course.').
- '';
- } elsif (lc($ENV{'form.Status'}) eq 'expired') {
- $Str .= '
'.
+ '';
+ } elsif (lc($env{'form.Status'}) eq 'expired') {
+ $Str .= '
'.
&mt('There are no previously enrolled students in the course.').
- '';
+ '
';
+ } elsif (lc($env{'form.Status'}) eq 'future') {
+ $Str .= ''.
+ &mt('There are no students with future access in the course.').
+ '
';
+ } else { # 'any' and any others
+ $Str .= ''.
+ &mt('There are no students in the course.').
+ '
';
}
} else {
- my $sections;
- if (lc($ENV{'form.Status'}) eq 'any') {
- $Str .= ''.
- &mt('There are no students in the selected sections.').
- '
';
- } elsif (lc($ENV{'form.Status'}) eq 'active') {
- $Str .= ''.
+ if (lc($env{'form.Status'}) eq 'active') {
+ $Str .= '
'.
&mt('There are no currently enrolled students in the selected sections.').
- '';
- } elsif (lc($ENV{'form.Status'}) eq 'expired') {
- $Str .= '
'.
+ '';
+ } elsif (lc($env{'form.Status'}) eq 'expired') {
+ $Str .= '
'.
&mt('There are no previously enrolled students in the selected sections.').
- '';
+ '
';
+ } elsif (lc($env{'form.Status'}) eq 'future') {
+ $Str .= ''.
+ &mt('There are no students with future access in the selected sections.').
+ '
';
+ } else { # 'any' and any others
+ $Str .= ''.
+ &mt('There are no students in the selected sections.').
+ '
';
}
}
- $Str.= ''.
- &mt('Click here to return to the chart').'';
+ $Str.= ''
+ .''
+ .&mt('Return to the chart').''
+ .'
';
$r->print($Str);
$r->rflush();
return;
}
- # "Click" is asinine but it is probably not my place to change the world.
- $Str .= 'Click on a students name or username to view their chart
';
- $Str .= ''."\n";
- $Str .= ''."\n";
+ $Str .= ''.&mt('Select One Student').''
+ .''.&mt("Click on a student's name or username to view their chart").' '
+ .&Apache::loncommon::start_data_table()
+ .&Apache::loncommon::start_data_table_header_row();
foreach my $field (@Fields) {
$Str .= ''.&mt($field).
' | ';
}
- $Str .= ' '."\n";
+ $Str .= &Apache::loncommon::end_data_table_header_row();
#
- my $alternate = 0;
foreach my $student (@Students) { # @Students is a package variable
my $sname = $student->{'username'}.':'.$student->{'domain'};
- if($alternate) {
- $Str .= '';
- } else {
- $Str .= ' ';
- }
- $alternate = ($alternate + 1) % 2;
+ $Str .= &Apache::loncommon::start_data_table_row();
#
foreach my $field (@Fields) {
$Str .= '';
if ($field eq 'fullname' || $field eq 'username') {
$Str .= '';
+ $Str .= &escape($sname).'">';
$Str .= $student->{$field}.' ';
$Str .= '';
} elsif ($field eq 'status') {
@@ -1048,9 +1044,9 @@ sub DisplayClasslist {
}
$Str .= ' | ';
}
- $Str .= " \n";
+ $Str .= &Apache::loncommon::end_data_table_row();
}
- $Str .= '
|
'."\n";
+ $Str .= &Apache::loncommon::end_data_table();
#
$r->print($Str);
$r->rflush();
@@ -1081,7 +1077,7 @@ sub CreateMainMenu {
{ internal_name => 'student_submission_reports',
name => &mt('Student Submission Reports'),
short_description =>
- &mt('Prepare Excel spreadsheets of student submissions.'),
+ &mt('Prepare reports of student submissions.'),
},
{ internal_name => 'survey_reports',
name => &mt('Survey Reports'),
@@ -1093,6 +1089,11 @@ sub CreateMainMenu {
short_description =>
&mt('Display a histogram of student performance in the course.'),
},
+# { internal_name => 'grading_analysis',
+# name => &mt('Detailed Grading Analysis'),
+# short_description =>
+# &mt('Display statistics about who graded who.'),
+# },
# { internal_name => 'student_assessment',
# name => &mt('Problem Status Chart'),
# short_description =>
@@ -1128,16 +1129,16 @@ sub handler {
if ($loaderror) { return $loaderror; }
$loaderror=
&Apache::lonnet::overloaderror($r,
- $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
+ $env{'course.'.$env{'request.course.id'}.'.home'});
if ($loaderror) { return $loaderror; }
#
# Check for access
- if (! &Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) {
- $ENV{'user.error.msg'}=
+ if (! &Apache::lonnet::allowed('vgr',$env{'request.course.id'})) {
+ $env{'user.error.msg'}=
$r->uri.":vgr:0:0:Cannot view grades for complete course";
if (! &Apache::lonnet::allowed('vgr',
- $ENV{'request.course.id'}.'/'.$ENV{'request.course.sec'})) {
- $ENV{'user.error.msg'}=
+ $env{'request.course.id'}.'/'.$env{'request.course.sec'})) {
+ $env{'user.error.msg'}=
$r->uri.":vgr:0:0:Cannot view grades with given role";
return HTTP_NOT_ACCEPTABLE;
}
@@ -1159,13 +1160,13 @@ sub handler {
ENDSTYLE
- $r->print(''.
- &mt('Course Statistics and Charts').
- ''.$style.
- "\n".
- &Apache::loncommon::bodytag('Course Statistics and Charts'));
+
+ $r->print(&Apache::loncommon::start_page('Course Statistics and Charts',
+ $style));
$r->rflush();
#
# Either print out a menu for them or send them to a report
@@ -1175,33 +1176,33 @@ ENDSTYLE
text =>'Statistics',
faq=>139,
bug=>'Statistics and Charts'});
- if (! exists($ENV{'form.reportSelected'}) ||
- $ENV{'form.reportSelected'} eq '') {
- $r->print(&Apache::lonhtmlcommon::breadcrumbs
- (undef,&mt('Statistics Main Page')).
+ if (! exists($env{'form.reportSelected'}) ||
+ $env{'form.reportSelected'} eq '') {
+ $r->print(&Apache::lonhtmlcommon::breadcrumbs('Statistics Main Page').
&CreateMainMenu());
} else {
#
if (! &Apache::lonmysql::verify_sql_connection()) {
my $serveradmin = $r->dir_config('lonAdmEMail');
- $r->print(''.
+ $r->print(''.
&mt('Unable to connect to database!').
- '
');
- $r->print(''.
- &mt('Please notify the server administrator ').
- ''.$serveradmin.'
');
+ '');
+ $r->print(''
+ .&mt('Please notify the server administrator [_1]',
+ ,''.$serveradmin.'')
+ .'
');
$r->print(''.
&mt('Course Statistics and Charts cannot be '.
'retrieved until the database is restarted. '.
'Your data is intact but cannot be displayed '.
'at this time.').'
');
- $r->print('