Files
Chamilo/main/gradebook/docs/example_csv.html
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

39 lines
1.4 KiB
HTML

<HTML>
<HEAD>
<TITLE>CSV file example</TITLE>
</HEAD>
<BODY>
<h1>CSV example for certificate importation</h1>
This is an example file and this data can't be imported on your platform. The user id must correspond to users existing on your platform.<br />
The mandatory fields are emphasized. The other fields can be omitted. The separator is always the ";". If you want to overwrite the scores, you must choose the "Overwrite score" option.<br />
<h2>Complete CSV score importation file</h2>
<b>username</b>;official_code;<b>lastname</b>;<b>firstname</b>;<b>score</b>;date<br />
<b>bgate</b>;bgate;Gate;Bill;<b>2</b>;02/25/09 12:24 PM<br />
<b>ltorvald</b>;ltorvald;Torvald;Linus;<b>10</b>;02/25/09 12:24 PM<br />
<b>jsmith</b>;;<b>Smith</b>;<b>John</b>;<b>3</b>;<br />
<br /><br />
<h2>Minimal CSV score importation file</h2>
This is possible to use a minimal file if you choose the "Ingnore error option" :
<br /><br />
username;score<br />
bgate;2<br />
ltorvald;10<br />
jsmith;3<br />
<h2>Presence score importation file</h2>
For the presence this is the same file except the score fied which is "0" for absent and "1" for present :
<br /><br />
<b>username</b>;official_code;<b>lastname</b>;<b>firstname</b>;<b>score</b>;date<br />
<b>bgate</b>;bgate;Gate;Bill;<b>0</b>;02/25/09 12:24 PM<br />
<b>ltorvald</b>;ltorvald;Torvald;Linus;<b>1</b>;02/25/09 12:24 PM<br />
<b>jsmith</b>;;<b>Smith</b>;<b>John</b>;<b>0</b>;<br />
</BODY>