?> </th> <th> <?php p($l->t('Experience')); ?> </th> </tr> <?php foreach ($_['members'] as $member => $cnt) { if (!is_null($member) && $member != '0') { $skills = OC_Collaboration_Skillset::readSkills($member); $skl_cnt = count($skills); if ($skl_cnt == 0) { print_unescaped('<tr><td>' . $member . '</td><td>' . $cnt['proj_cnt'] . '</td><td>' . $cnt['tot_cnt'] . '</td><td colspan="3" >' . $l->t('Skills yet to be added by member') . '</td></tr>'); } else { print_unescaped('<tr><td rowspan="' . $skl_cnt . '" >' . $member . '</td><td rowspan="' . $skl_cnt . '" >' . $cnt['proj_cnt'] . '</td><td rowspan="' . $skl_cnt . '" >' . $cnt['tot_cnt'] . '</td>'); foreach ($skills as $skill) { print_unescaped('<td>' . $skill['skill'] . '</td><td>' . OC_Collaboration_Skillset::getExpertiseString($skill['expertise']) . '</td><td>' . $skill['experience'] . ' ' . $l->t('year(s)') . '</td></tr><tr>'); } print_unescaped('</tr>'); } } } ?> </table> </div>
</th> <th><?php p($l->t('Expertise')); ?> </th> <th><?php print_unescaped($l->t('Experience') . '<br />' . $l->t('(in years)')); ?> </th> <th></th> </tr> <?php $skills = OC_Collaboration_Skillset::readSkills(OC_User::getUser()); foreach ($skills as $skill) { print_unescaped('<tr><td>' . $skill['skill'] . '</td><td>' . OC_Collaboration_Skillset::getExpertiseString($skill['expertise']) . '</td><td>' . $skill['experience'] . '</td><td><img class="old_skill" src="' . OCP\Util::imagePath('core', 'actions/delete.png') . '" width="15px" height="15px" /></td></tr>'); } ?> <tr> <td id="add_skill0" > <input type="button" id="btn_add_skill" value="<?php p($l->t('Add a skill')); ?> " /> </td> </tr> </table> <div id="submit_btn" > <input type="submit" value="<?php p($l->t('Update'));