mirror of
https://github.com/moodle/moodle.git
synced 2025-03-21 08:00:37 +01:00
Merge branch 'MDL-64280-master' of https://github.com/lucaboesch/moodle
This commit is contained in:
commit
796a2d81f1
@ -7,7 +7,7 @@
|
||||
<td>
|
||||
<label for="removeoutcomes"><?php print_string('outcomescourse', 'grades'); ?></label>
|
||||
<br />
|
||||
<select id="removeoutcomes" size="20" name="removeoutcomes[]" multiple="multiple">
|
||||
<select id="removeoutcomes" size="20" name="removeoutcomes[]" multiple="multiple" class="form-control input-block-level">
|
||||
<?php
|
||||
if ($co_standard_notused) {
|
||||
echo '<optgroup label="'.get_string('outcomescoursenotused', 'grades').'">';
|
||||
@ -36,18 +36,20 @@
|
||||
<?php
|
||||
if (has_capability('moodle/grade:manageoutcomes', $context)) {
|
||||
?>
|
||||
<td>
|
||||
<td class="p-l-1 p-r-1">
|
||||
<p class="arrow_button">
|
||||
<input name="add" id="add" type="submit" value="<?php echo ' '.$OUTPUT->larrow().' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" />
|
||||
<input name="add" class="btn btn_secondary" id="add" type="submit" value="<?php echo ' ' . $OUTPUT->larrow() . ' ' .
|
||||
get_string('add'); ?>" title="<?php print_string('add'); ?>" />
|
||||
<br />
|
||||
<input name="remove" id="remove" type="submit" value="<?php echo ' '.$OUTPUT->rarrow().' '.get_string('remove'); ?>" title="<?php print_string('remove'); ?>" />
|
||||
<input name="remove" class="btn btn_secondary" id="remove" type="submit" value="<?php echo ' ' . get_string('remove') . ' ' .
|
||||
$OUTPUT->rarrow(); ?>" title="<?php print_string('remove'); ?>" />
|
||||
</p>
|
||||
</td>
|
||||
<?php } ?>
|
||||
<td>
|
||||
<label for="addoutcomes"><?php print_string('outcomesstandardavailable', 'grades'); ?></label>
|
||||
<br />
|
||||
<select id="addoutcomes" size="20" name="addoutcomes[]" multiple="multiple">
|
||||
<select id="addoutcomes" size="20" name="addoutcomes[]" multiple="multiple" class="form-control input-block-level">
|
||||
|
||||
<?php
|
||||
foreach ($standardoutcomes as $outcome) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user