Everything comes up.
This commit is contained in:
parent
9549a635a0
commit
ef0c662341
|
@ -69,22 +69,38 @@
|
||||||
<td>
|
<td>
|
||||||
<select class="form-control form-control-lg">
|
<select class="form-control form-control-lg">
|
||||||
<option value="" disabled selected>Nature</option>
|
<option value="" disabled selected>Nature</option>
|
||||||
|
@foreach (var nature in Model.natureList)
|
||||||
|
{
|
||||||
|
<option>@nature.Nature</option>
|
||||||
|
}
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<select class="form-control form-control-lg">
|
<select class="form-control form-control-lg">
|
||||||
<option value="" disabled selected>Sub Skill</option>
|
<option value="" disabled selected>Sub Skill</option>
|
||||||
|
@foreach (var subskill in Model.subskillList)
|
||||||
|
{
|
||||||
|
<option>@subskill.SubSkill</option>
|
||||||
|
}
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select class="form-control form-control-lg">
|
<select class="form-control form-control-lg">
|
||||||
<option value="" disabled selected>Sub Skill</option>
|
<option value="" disabled selected>Sub Skill</option>
|
||||||
|
@foreach (var subskill in Model.subskillList)
|
||||||
|
{
|
||||||
|
<option>@subskill.SubSkill</option>
|
||||||
|
}
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select class="form-control form-control-lg">
|
<select class="form-control form-control-lg">
|
||||||
<option value="" disabled selected>Sub Skill</option>
|
<option value="" disabled selected>Sub Skill</option>
|
||||||
|
@foreach (var subskill in Model.subskillList)
|
||||||
|
{
|
||||||
|
<option>@subskill.SubSkill</option>
|
||||||
|
}
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue