Changeset 98 for trunk/src/grails-app/views/taskDetailed
- Timestamp:
- Apr 4, 2009, 6:41:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/views/taskDetailed/show.gsp
r96 r98 163 163 <th style="color:Black">Comment</th> 164 164 <th style="color:Black">Date Done</th> 165 <th style="color:Black">Duration</th> 165 166 <th style="color:Black">Entered By</th> 167 <th style="color:Black">Edit</th> 168 166 169 <!-- <g:sortableColumn property="comment" title="Comment" /> 167 170 … … 177 180 178 181 <td width="65%">${entry.comment}</td> 179 180 182 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd MMM yyyy"/></td> 181 183 <td>${entry.durationHour}:${entry.durationMinute}</td> 182 184 <td>${entry.enteredBy}</td> 185 <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td> 186 183 187 </g:if> 184 188 … … 196 200 <th style="color:Black">Comment</th> 197 201 <th style="color:Black">Date Done</th> 202 <th style="color:Black">Duration</th> 198 203 <th style="color:Black">Entered By</th> 204 <th style="color:Black">Edit</th> 199 205 <!-- <g:sortableColumn property="commentW" title="Comment" /> 200 206 … … 210 216 211 217 <td width="65%">${entry.comment}</td> 212 213 218 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd MMM yyyy"/></td> 214 219 <td>${entry.durationHour}:${entry.durationMinute}</td> 215 220 <td>${entry.enteredBy}</td> 221 <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td> 216 222 </g:if> 217 223 … … 225 231 226 232 <div class="buttons"> 227 <span class="menuButton" style="height:50px"> 228 <g:link controller="entryDetailed" params="['task.id':taskInstance.id]" action="create">Add Entry</g:link> 229 </span> 233 <g:form controller="entryDetailed"> 234 <input type="hidden" name="taskInstance.id" value="${taskInstance?.id}" /> 235 <span class="button"> 236 <g:actionSubmit value="Add Entry" action="create" class="edit"/> 237 </span> 238 </g:form> 230 239 </div> 231 240
Note: See TracChangeset
for help on using the changeset viewer.