Index: trunk/grails-app/views/entryDetailed/create.gsp
===================================================================
--- trunk/grails-app/views/entryDetailed/create.gsp	(revision 139)
+++ trunk/grails-app/views/entryDetailed/create.gsp	(revision 147)
@@ -5,13 +5,13 @@
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
         <meta name="layout" content="main" />
-        <title>Create Entry</title>         
+        <title>Create Entry</title>
+        <nav:resources override="true"/>
+        <resource:dateChooser />
     </head>
     <body>
         <div class="nav">
-            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-            <span class="menuButton"><g:link class="list" action="list">Entry List</g:link></span>
+            <h1>Create Entry</h1>
         </div>
         <div class="body">
-            <h1>Create Entry</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
@@ -51,5 +51,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'dateDone','errors')}">
-                                    <g:datePicker name="dateDone" value="${entryInstance?.dateDone}" precision="day"></g:datePicker>
+                                    <richui:dateChooser name="dateDone" format="dd-MM-yyyy" value="${new Date()}" />
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/entryDetailed/edit.gsp
===================================================================
--- trunk/grails-app/views/entryDetailed/edit.gsp	(revision 139)
+++ trunk/grails-app/views/entryDetailed/edit.gsp	(revision 147)
@@ -6,13 +6,11 @@
         <meta name="layout" content="main" />
         <title>Edit Entry</title>
+        <resource:dateChooser />
     </head>
     <body>
         <div class="nav">
-            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-            <span class="menuButton"><g:link class="list" action="list">Entry List</g:link></span>
-            <span class="menuButton"><g:link class="create" action="create">New Entry</g:link></span>
+            <h1>Edit Entry</h1>
         </div>
         <div class="body">
-            <h1>Edit Entry</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
@@ -52,5 +50,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'dateDone','errors')}">
-                                    <g:datePicker name="dateDone" value="${entryInstance?.dateDone}" precision="day"></g:datePicker>
+                                    <richui:dateChooser name="dateDone" format="dd-MM-yyyy" value="${entryInstance?.dateDone}" />
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/entryDetailed/show.gsp
===================================================================
--- trunk/grails-app/views/entryDetailed/show.gsp	(revision 139)
+++ trunk/grails-app/views/entryDetailed/show.gsp	(revision 147)
@@ -9,10 +9,7 @@
     <body>
         <div class="nav">
-            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-            <span class="menuButton"><g:link class="list" action="list">Entry List</g:link></span>
-            <span class="menuButton"><g:link class="create" action="create">New Entry</g:link></span>
+            <h1>Show Entry</h1>
         </div>
         <div class="body">
-            <h1>Show Entry</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
@@ -47,20 +44,13 @@
                             <td valign="top" class="name">Date Done:</td>
                             
-                            <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'dateDone')}</td>
+                            <td valign="top" class="value">
+                                <g:formatDate date="${entryInstance.dateDone}" format="EEE, dd-MMM-yyyy"/>
+                            </td>
                             
                         </tr>
                     
                         <tr class="prop">
-                            <td valign="top" class="name">Duration Hour:</td>
-                            
-                            <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'durationHour')}</td>
-                            
-                        </tr>
-                    
-                        <tr class="prop">
-                            <td valign="top" class="name">Duration Minute:</td>
-                            
-                            <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'durationMinute')}</td>
-                            
+                            <td valign="top" class="name">Duration:</td>
+                            <td valign="top" class="value">${entryInstance.durationHour}h : ${entryInstance.durationMinute}min</td>
                         </tr>
                     
@@ -68,5 +58,7 @@
                             <td valign="top" class="name">Date Entered:</td>
                             
-                            <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'dateEntered')}</td>
+                            <td valign="top" class="value">
+                                <g:formatDate date="${entryInstance.dateEntered}" format="EEE, dd-MMM-yyyy @ HH:mm"/>
+                            </td>
                             
                         </tr>
