File:  [LON-CAPA] / loncom / homework / templates / examupload.problem
Revision 1.4: download - view: text, annotated - select for diffs
Tue Jan 27 20:45:11 2004 UTC (20 years, 3 months ago) by albertel
Branches: MAIN
CVS tags: version_1_1_X, version_1_1_3, version_1_1_2, HEAD
- allow formatting of the shown grade in the score upload

<problem>
<displaytitle />
<parameter name="scoreformat" description="Format for display of score" default="0f" type="string" />
<script type="loncapa/perl">
$weight=&EXT('resource.0.weight');
if ((!defined($weight)) || ($weight eq '')) { $weight=1; }
$awarded=&EXT('user.resource.resource.0.awarded');
if (!defined($awarded)) { $awarded=0; }
$scoreformat=&EXT('resource.0.scoreformat');
if (!defined($scoreformat) || $scoreformat eq '') { $scoreformat="2f"; }
</script>
<startouttext />
You have <display>&format($awarded*$weight,$scoreformat)</display> out of $weight possible points.
<endouttext />
<notsolved><numericalresponse id='score' /></notsolved>
</problem>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>