make create course file and update samhäll accordingly
This commit is contained in:
26
html/include/createCourse.php
Normal file
26
html/include/createCourse.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
function createCourse($dname, $nameId, $points, $disabled) {
|
||||
$disClass = "delete_row";
|
||||
if($disabled==='disabled') {
|
||||
$disClass = "";
|
||||
}
|
||||
echo "
|
||||
<div style='display:flex;'>
|
||||
<li class='mdl-list__item mdl-list__item--two-line' style='overflow:visible;padding: 16px 24px 16px 16px;width:175px'>
|
||||
<span class='mdl-list__item-primary-content'>
|
||||
<span id='$nameId'>$dname</span>
|
||||
<span class='points mdl-list__item-sub-title' value=''+points+''>$points Poäng</span>
|
||||
</span></li>
|
||||
<input class='points' style='display:none;' type='text' value='$points'>
|
||||
<input class='subjectName' style='display:none;' type='text' value='$nameId'>
|
||||
<select class='grade'>
|
||||
<option value='0'>F</option>
|
||||
<option selected value='10'>E</option>
|
||||
<option value='12.5'>D</option>
|
||||
<option value='15'>C</option>
|
||||
<option value='17.5'>B</option>
|
||||
<option value='20'>A</option>
|
||||
</select>
|
||||
<a $disabled class='$disClass mdl-button mdl-js-button mdl-button--accent mdl-js-ripple-effect' style='margin:16px 5px'>Ta Bort</a>
|
||||
</div>";
|
||||
}
|
Reference in New Issue
Block a user