Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 843 → Rev 844

/impl/conf/WEB-INF/web.xml
355,6 → 355,35
<!--TLDS-->
<jsp-config>
<taglib>
<taglib-uri>/WEB-INF/tlds/jomm.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/jomm.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/tlds/baco.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/baco.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/tlds/struts-bean.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/tlds/struts-html.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/tlds/struts-logic.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/tlds/struts-nested.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-nested.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/tlds/struts-tiles.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-tiles.tld</taglib-location>
</taglib>
 
<taglib>
<taglib-uri>/WEB-INF/jomm.tld</taglib-uri>
<taglib-location>/WEB-INF/tlds/jomm.tld</taglib-location>
</taglib>
/impl/src/web/user/courseunits/students.jsp
45,7 → 45,11
<th><bean:message key="user"/></th>
<th><bean:message key="email"/></th>
 
<baco:hasRole role="teacher">
<th><bean:message key="phone.number"/></th>
</baco:hasRole>
 
</tr>
</thead>
<tbody>
63,6 → 67,9
<td>
${student.safeEmail}
</td>
<baco:hasRole role="teacher">
<td>${student.phonenumber} </td>
</baco:hasRole>
</tr>
</logic:iterate>
</tbody>