Changeset 431 for trunk/grails-app/views/taskDetailed/show.gsp
- Timestamp:
- Mar 5, 2010, 12:45:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskDetailed/show.gsp
r418 r431 62 62 <td valign="top" class="name">Parent Task:</td> 63 63 64 <td valign="top" class="value"><g:link controller="taskDetailed" action="show" id="${taskInstance.parentTask.id}">${taskInstance.parentTask.encodeAsHTML()}</g:link></td> 64 <td valign="top" class="value"> 65 <g:link controller="taskDetailed" action="show" id="${taskInstance.parentTask.id}"> 66 ${taskInstance.parentTask.encodeAsHTML()} 67 </g:link> 68 </td> 65 69 66 70 </tr> … … 77 81 <td valign="top" class="name">Target Start:</td> 78 82 79 <td valign="top" class="value"><g:formatDate date="${taskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/></td> 83 <td valign="top" class="value"> 84 <g:formatDate date="${taskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/> 85 </td> 80 86 81 87 </tr> … … 84 90 <td valign="top" class="name">Target Completion:</td> 85 91 86 <td valign="top" class="value"><g:formatDate date="${taskInstance.targetCompletionDate}" format="EEE, dd-MMM-yyyy"/></td> 92 <td valign="top" class="value"> 93 <g:formatDate date="${taskInstance.targetCompletionDate}" format="EEE, dd-MMM-yyyy"/> 94 </td> 87 95 88 96 </tr> … … 236 244 <g:else> 237 245 <span class="button"><g:actionSubmit class="flag" value="Unresolved" action="setAttentionFlag"/></span> 246 <g:helpBalloon class="helpballoon" code="task.status.unresolved" /> 238 247 </g:else> 239 248 240 249 <span class="button"><g:actionSubmit class="complete" value="Resolved" action="complete"/></span> 250 <g:helpBalloon class="helpballoon" code="task.status.resolved" /> 241 251 242 252 <g:if test="${taskInstance.approved}" > … … 272 282 <tr> 273 283 <th>Comment</th> 274 <th>Date Done</th> 284 <th>Date</th> 285 <th>Production</th> 275 286 <th>Down Time</th> 276 287 <th>Entered By</th> … … 282 293 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/> 283 294 284 <td style="width:65%">${entry.comment }</td>295 <td style="width:65%">${entry.comment.encodeAsHTML()}</td> 285 296 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/></td> 297 <td> 298 <g:if test="${entry.productionReference}"> 299 ${entry.productionReference.encodeAsHTML()} 300 </g:if> 301 <g:else> 302 <g:message code="default.none.text" /> 303 </g:else> 304 </td> 286 305 <td>${entry.durationHour}:${entry.durationMinute}</td> 287 <td>${entry.enteredBy }</td>306 <td>${entry.enteredBy.encodeAsHTML()}</td> 288 307 289 308 <td> … … 332 351 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/> 333 352 334 <td style="width:65%">${entry.comment }</td>353 <td style="width:65%">${entry.comment.encodeAsHTML()}</td> 335 354 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/></td> 336 <td>${entry.enteredBy }</td>355 <td>${entry.enteredBy.encodeAsHTML()}</td> 337 356 338 357 <td> … … 382 401 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/> 383 402 384 <td width="65%">${entry.comment }</td>403 <td width="65%">${entry.comment.encodeAsHTML()}</td> 385 404 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/></td> 386 405 <td>${entry.durationHour}:${entry.durationMinute}</td> 387 <td>${entry.enteredBy }</td>406 <td>${entry.enteredBy.encodeAsHTML()}</td> 388 407 389 408 <td>
Note: See TracChangeset
for help on using the changeset viewer.