Merge branch 'master' of gitlab.cip.ifi.lmu.de:jost/UniWorX
This commit is contained in:
commit
8dd56dcb3e
@ -423,7 +423,7 @@ SheetTypeNotGraded: Unbewertet
|
|||||||
SheetTypeInfoNotGraded: Blätter ohne Wertung werden nirgends angerechnet, die Bewertung durch den Korrektor dient lediglich zur Information der Teilnehmer.
|
SheetTypeInfoNotGraded: Blätter ohne Wertung werden nirgends angerechnet, die Bewertung durch den Korrektor dient lediglich zur Information der Teilnehmer.
|
||||||
SheetTypeInfoBonus: Bonus Blätter zählen normal, erhöhen aber nicht die maximal erreichbare Punktzahl bzw. Anzahl zu bestehender Blätter.
|
SheetTypeInfoBonus: Bonus Blätter zählen normal, erhöhen aber nicht die maximal erreichbare Punktzahl bzw. Anzahl zu bestehender Blätter.
|
||||||
SheetGradingBonusIncluded: Erzielte Bonuspunkte wurden hier bereits zu den erreichten normalen Punkten hinzugezählt.
|
SheetGradingBonusIncluded: Erzielte Bonuspunkte wurden hier bereits zu den erreichten normalen Punkten hinzugezählt.
|
||||||
SummaryTitle: Zusammenfassung über alle
|
SummaryTitle: Zusammenfassung über
|
||||||
SheetGradingSummaryTitle intgr@Integer: #{display intgr} #{pluralDE intgr "Blatt" "Blätter"}
|
SheetGradingSummaryTitle intgr@Integer: #{display intgr} #{pluralDE intgr "Blatt" "Blätter"}
|
||||||
SubmissionGradingSummaryTitle intgr@Integer: #{display intgr} #{pluralDE intgr "Abgabe" "Abgaben"}
|
SubmissionGradingSummaryTitle intgr@Integer: #{display intgr} #{pluralDE intgr "Abgabe" "Abgaben"}
|
||||||
|
|
||||||
|
|||||||
@ -15,15 +15,21 @@ $#
|
|||||||
<th .table__th>_{sumHeader}
|
<th .table__th>_{sumHeader}
|
||||||
$maybe _ <- hasMarkedPasses
|
$maybe _ <- hasMarkedPasses
|
||||||
$with Sum pmax <- summary ^. _numMarkedPasses
|
$with Sum pmax <- summary ^. _numMarkedPasses
|
||||||
$with Sum pacv <- summary ^. _achievedPasses
|
$if pmax > 0
|
||||||
<td .table__td>
|
$with Sum pacv <- summary ^. _achievedPasses
|
||||||
$if pmax > 0
|
<td .table__td>
|
||||||
#{textPercentInt pacv pmax}
|
$if pmax > 0
|
||||||
<td .table__td>
|
#{textPercentInt pacv pmax}
|
||||||
#{display pacv} / #{display pmax}
|
<td .table__td>
|
||||||
|
#{display pacv} / #{display pmax}
|
||||||
|
$else
|
||||||
|
<td .table__td>
|
||||||
|
<td .table__td>
|
||||||
$maybe _ <- hasPasses
|
$maybe _ <- hasPasses
|
||||||
<td .table__td>
|
$with Sum numPass <- summary ^. _numSheetsPasses
|
||||||
#{display $ summary ^. _numSheetsPasses}
|
<td .table__td>
|
||||||
|
$if numPass > 0
|
||||||
|
#{display numPass}
|
||||||
$maybe _ <- hasMarkedPoints
|
$maybe _ <- hasMarkedPoints
|
||||||
$with Sum pmax <- summary ^. _sumMarkedPoints
|
$with Sum pmax <- summary ^. _sumMarkedPoints
|
||||||
$with Sum pacv <- summary ^. _achievedPoints
|
$with Sum pacv <- summary ^. _achievedPoints
|
||||||
@ -32,9 +38,17 @@ $#
|
|||||||
#{textPercent $ realToFrac $ pacv / pmax}
|
#{textPercent $ realToFrac $ pacv / pmax}
|
||||||
<td .table__td>
|
<td .table__td>
|
||||||
#{display pacv} / #{display pmax}
|
#{display pacv} / #{display pmax}
|
||||||
\ (_{title $ getSum $ summary ^. _numMarkedPoints})
|
$if ((summary ^. _numMarkedPoints) /= (summary ^. _numSheets))
|
||||||
|
$# Falls Anzahl Blätter der Zeile verschieden von Anzahl gewerterer Blätter
|
||||||
|
\ (_{title $ getSum $ summary ^. _numMarkedPoints})
|
||||||
|
$# Kurze Alternative mit Hashtag-Symbol für "Anzahl"
|
||||||
|
$# \ (##{display $ summary ^. _numMarkedPoints})
|
||||||
$maybe _ <- hasPoints
|
$maybe _ <- hasPoints
|
||||||
<td .table__td>
|
<td .table__td>
|
||||||
#{display (summary ^. _sumSheetsPoints)}
|
#{display (summary ^. _sumSheetsPoints)}
|
||||||
\ (_{title $ getSum $ summary ^. _numSheetsPoints})
|
$if ((summary ^. _numSheetsPoints) /= (summary ^. _numSheets))
|
||||||
|
$# Falls Anzahl Blätter der Zeile verschieden von Anzahl Blätter mit Punkten
|
||||||
|
\ (_{title $ getSum $ summary ^. _numSheetsPoints})
|
||||||
|
$# Kurze Alternative mit Hashtag-Symbol für "Anzahl"
|
||||||
|
$# \ (##{display $ summary ^. _numSheetsPoints})
|
||||||
<td .table__td>#{display $ summary ^. _numSheets}
|
<td .table__td>#{display $ summary ^. _numSheets}
|
||||||
Reference in New Issue
Block a user