Index: trunk/grails-app/views/sectionDetailed/create.gsp
===================================================================
--- trunk/grails-app/views/sectionDetailed/create.gsp	(revision 308)
+++ trunk/grails-app/views/sectionDetailed/create.gsp	(revision 331)
@@ -31,5 +31,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'name','errors')}">
-                                    <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:sectionInstance,field:'name')}"/>
+                                    <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:sectionInstance,field:'name')}"/>
                                 </td>
                             </tr> 
@@ -40,5 +40,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'description','errors')}">
-                                    <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:sectionInstance,field:'description')}"/>
+                                    <input type="text" class="description" maxlength="75" id="description" name="description" value="${fieldValue(bean:sectionInstance,field:'description')}"/>
+                                </td>
+                            </tr>
+                            
+                            <tr class="prop">
+                                <td valign="top" class="name">
+                                    <label for="comment">Comment:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'comment','errors')}">
+                                    <textarea rows="5" cols="40" name="comment">${fieldValue(bean:sectionInstance, field:'comment')}</textarea>
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/sectionDetailed/edit.gsp
===================================================================
--- trunk/grails-app/views/sectionDetailed/edit.gsp	(revision 308)
+++ trunk/grails-app/views/sectionDetailed/edit.gsp	(revision 331)
@@ -34,5 +34,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'name','errors')}">
-                                    <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:sectionInstance,field:'name')}"/>
+                                    <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:sectionInstance,field:'name')}"/>
                                 </td>
                             </tr> 
@@ -43,5 +43,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'description','errors')}">
-                                    <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:sectionInstance,field:'description')}"/>
+                                    <input type="text" class="description" maxlength="75" id="description" name="description" value="${fieldValue(bean:sectionInstance,field:'description')}"/>
+                                </td>
+                            </tr> 
+                            
+                            <tr class="prop">
+                                <td valign="top" class="name">
+                                    <label for="comment">Comment:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'comment','errors')}">
+                                    <textarea rows="5" cols="40" name="comment">${fieldValue(bean:sectionInstance, field:'comment')}</textarea>
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/sectionDetailed/show.gsp
===================================================================
--- trunk/grails-app/views/sectionDetailed/show.gsp	(revision 308)
+++ trunk/grails-app/views/sectionDetailed/show.gsp	(revision 331)
@@ -40,4 +40,11 @@
                             
                             <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'description')}</td>
+                            
+                        </tr>
+                    
+                        <tr class="prop">
+                            <td valign="top" class="name">Comment:</td>
+                            
+                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'comment')}</td>
                             
                         </tr>
