Index: trunk/grails-app/views/entryDetailed/_list.gsp
===================================================================
--- trunk/grails-app/views/entryDetailed/_list.gsp	(revision 834)
+++ trunk/grails-app/views/entryDetailed/_list.gsp	(revision 834)
@@ -0,0 +1,57 @@
+
+        <h1>
+            <g:if test="${entryList[0]?.entryType?.id == 1}">
+                Faults
+            </g:if>
+            <g:if test="${entryList[0]?.entryType?.id == 2}">
+                Causes
+            </g:if>
+            <g:if test="${entryList[0]?.entryType?.id == 3}">
+                Work Done
+            </g:if>
+            <g:if test="${entryList[0]?.entryType?.id == 6}">
+                PM Entries
+            </g:if>
+        </h1>
+        <div class="list">
+            <table>
+                <thead>
+                    <tr>
+                        <th>Comment</th>
+                        <th>Date Done</th>
+                        <th>Duration</th>
+                        <th>Entered By</th>
+                        <th></th>
+                    </tr>
+                </thead>
+                <tbody>
+                    <g:each in="${entryList}" status="i" var="entry">
+                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}">
+
+                                <td width="65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                    ${entry.comment.encodeAsHTML()}
+                                </td>
+
+                                <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                    <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/>
+                                </td>
+
+                                <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                    ${entry.durationHour}:${entry.durationMinute}
+                                </td>
+
+                                <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                    ${entry.enteredBy.encodeAsHTML()}
+                                </td>
+
+                                <td class="notClickable">
+                                    <g:link controller="entryDetailed" action="edit" id="${entry.id}">
+                                        <img  src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" title="Edit" />
+                                    </g:link>
+                                </td>
+
+                            </tr>
+                    </g:each>
+                </tbody>
+            </table>
+        </div>
