blob: c14ba82d26288c2d9c4ed13b105eb39ad592cefd (
plain)
1
2
3
4
5
6
7
|
<label class="gradebook-weight">
<?= htmlReady($definition->name) ?>
<div>
<input type="number" id="definition-<?= $definition->id ?>" name="definitions[<?= $definition->id ?>]" value="<?= htmlReady($definition->weight) ?>" min="0" max="1000000">
<output name="weight-percent" for="definition-<?= $definition->id ?>"><?= $this->controller->formatAsPercent($this->controller->getNormalizedWeight($definition)) ?></output>
</div>
</label>
|