Subversion Repositories bacoAlunos

Rev

Rev 1464 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1464 Rev 1465
Line 28... Line 28...
28
    IServiceManager sm = ServiceManager.getInstance();
28
    IServiceManager sm = ServiceManager.getInstance();
29
    String[] names = new String[]{};
29
    String[] names = new String[]{};
30
    Object[] args = new Object[]{};
30
    Object[] args = new Object[]{};
31
 
31
 
32
    List<IToDoCat> todos = (List<IToDoCat>) sm.execute(RequestUtils.getRequester(request, response), "CommonServicesGetAllTodosCat", args, names);
32
    List<IToDoCat> todos = (List<IToDoCat>) sm.execute(RequestUtils.getRequester(request, response), "CommonServicesGetAllTodosCat", args, names);
33
    if (todos == null || todos.size() == 0)
33
    if (todos != null && todos.size() > 0)
34
    {
34
    {
35
%>
35
%>
36
 
36
 
37
<div class="row">
37
<div class="row">
38
    <div class="col-md-12 col-sm-12 col-xs-12">
38
    <div class="col-md-12 col-sm-12 col-xs-12">
Line 119... Line 119...
119
                                        {
119
                                        {
120
                                            out.print(MessageResources.getMessage(request,todo.getCatKey(),todo.getCatArg0()) + ":");
120
                                            out.print(MessageResources.getMessage(request,todo.getCatKey(),todo.getCatArg0()) + ":");
121
                                        }
121
                                        }
122
 
122
 
123
                                    %>
123
                                    %>
-
 
124
 
124
                                    <%=todo.getLabelInsideCat(request)%>
125
                                    <%=todo.getDescription()%>
125
                                    <img src="<%=request.getContextPath()%>/imgs/preencher.gif" width="35px"/>
126
                                    <img src="<%=request.getContextPath()%>/imgs/preencher.gif" width="35px"/>
126
                            </a>
127
                            </a>
127
 
128
 
128
                        </div>
129
                        </div>
129
                        <%
130
                        <%