Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 1464 → Rev 1465

/branches/v3/impl/src/web/user/home/todos.jsp
30,7 → 30,7
Object[] args = new Object[]{};
 
List<IToDoCat> todos = (List<IToDoCat>) sm.execute(RequestUtils.getRequester(request, response), "CommonServicesGetAllTodosCat", args, names);
if (todos == null || todos.size() == 0)
if (todos != null && todos.size() > 0)
{
%>
 
121,7 → 121,8
}
 
%>
<%=todo.getLabelInsideCat(request)%>
 
<%=todo.getDescription()%>
<img src="<%=request.getContextPath()%>/imgs/preencher.gif" width="35px"/>
</a>
 
/branches/v3/impl/src/web/user/home/student.jsp
50,9 → 50,9
<bean:message key="profile.bad.profile.student.iregular.user.class"/>
</div>
</logic:notMatch>
<baco:isModuleOn module="todos">
<jsp:include page="/user/home/todos.jsp"/>
</baco:isModuleOn>
 
<jsp:include page="todosAfazer.jsp"/>
 
<div class="row">
<div class="col-md-6 col-sm-12 col-xs-12">
 
/branches/v3/impl/src/web/user/home/todosAfazer.jsp
72,7 → 72,7
out.print(MessageResources.getMessage(request,todo.getCatKey(),todo.getCatArg0()) + ":");
}
%>
<%=todo.getLabelInsideCat(request)%>
<%=todo.getDescription()%>
</a>
<img src="<%=request.getContextPath()%>/imgs/preencher.gif" width="35px"/>
<%