Documentation
Lesson report
Description
The Lesson report module enables to insert a ready-made lesson report, including percentage results for each individual page of a presentation, a total percentage result, and a number of checks and errors. It is possible to modify the appearance of each part of the report individually.
Property name | Description |
---|---|
Errors Label | A label for a column with Errors, displayed in the report's header. |
Checks Label | A label for the Checks column, displayed in the report's header. |
Results Label | A label for a column showing the result, displayed in the report's header. |
Total Label | A label for the last row of the report which displays the total score of the lesson. |
Show counters | Checking this property displays columns with "checks" and "errors" with values for each page in every row. |
Title width | A number in pixels that will be set for the first column. |
Supported commands
Command name | Params | Description |
---|---|---|
... | ... | ... |
CSS classes
Class name | Description |
---|---|
.ic_report | indicates the distance between the data cells in the report's table |
.ic_report td | indicates the distance between the data cells in the report's table |
.ic_report-header | indicates the look of the report's header |
.ic_report-odd | indicates the look of the oddly numbered lines |
.ic_report-even | indicates the look of the evenly numbered lines |
.ic_report-footer | indicates the look of the report's footer |
.ic_report .ic_progress | indicates the look of the progress bar modules located inside the report's table, excluding the parameter defining the look of the internal bar, which increases proportionally to the user's progress |
.ic_report .ic_progress-bar | indicates the parameter defining the look of internal bars, which increase proportionally to the user's progress |
.ic_report .ic_progress-text | indicates the look of the texts inside the progress bars |
Examples
1.1. Report
.ic_report{
padding: 15px;
border-radius: 5px;
border: 2px solid gray;
background-color:white;
color:gray;
}
1.2. Report td
.ic_report td{
padding: 10px;
}
1.3. Report header
.ic_report-header{
font-weight: bold;
color: black;
}
1.4. Report odd
.ic_report-odd{
background-color: #f5f6f6;
}
1.5. Report even
.ic_report-even{
background-color: #edefef;
}
1.6. Report progress
.ic_report .ic_progress{
border-radius: 4px;
border: 2px solid #128700;
padding: 2px;
}
1.7. Report progress-bar
.ic_report .ic_progress-bar{
background-color: #54e600;
border-radius: 4px;
}
1.8. Report progress-text
.ic_report .ic_progress-text{
line-height: 21px;
font-family: Arial;
font-size: 18px;
}