Index: /trunk/grails-app/domain/Department.groovy
===================================================================
--- /trunk/grails-app/domain/Department.groovy	(revision 332)
+++ /trunk/grails-app/domain/Department.groovy	(revision 333)
@@ -3,4 +3,5 @@
     String name
     String description = ""
+    String comment = ""
     boolean isActive = true
 
@@ -13,5 +14,6 @@
     static constraints = {
         name(maxSize:50, unique:true, blank:false)
-        description(maxSize:100)
+        description(maxSize:75)
+        comment(maxSize:500)
         isActive()
     }
Index: /trunk/grails-app/views/departmentDetailed/create.gsp
===================================================================
--- /trunk/grails-app/views/departmentDetailed/create.gsp	(revision 332)
+++ /trunk/grails-app/views/departmentDetailed/create.gsp	(revision 333)
@@ -31,5 +31,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
-                                    <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
+                                    <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
                                 </td>
                             </tr> 
@@ -40,5 +40,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'description','errors')}">
-                                    <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:departmentInstance,field:'description')}"/>
+                                    <input type="text" class="description" maxlength="75" id="description" name="description" value="${fieldValue(bean:departmentInstance,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:departmentInstance,field:'comment','errors')}">
+                                    <textarea rows="5" cols="40" name="comment">${fieldValue(bean:departmentInstance, field:'comment')}</textarea>
                                 </td>
                             </tr> 
Index: /trunk/grails-app/views/departmentDetailed/edit.gsp
===================================================================
--- /trunk/grails-app/views/departmentDetailed/edit.gsp	(revision 332)
+++ /trunk/grails-app/views/departmentDetailed/edit.gsp	(revision 333)
@@ -34,5 +34,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
-                                    <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
+                                    <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
                                 </td>
                             </tr> 
@@ -43,5 +43,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'description','errors')}">
-                                    <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:departmentInstance,field:'description')}"/>
+                                    <input type="text" class="description" maxlength="75" id="description" name="description" value="${fieldValue(bean:departmentInstance,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:departmentInstance,field:'comment','errors')}">
+                                    <textarea rows="5" cols="40" name="comment">${fieldValue(bean:departmentInstance, field:'comment')}</textarea>
                                 </td>
                             </tr> 
Index: /trunk/grails-app/views/departmentDetailed/show.gsp
===================================================================
--- /trunk/grails-app/views/departmentDetailed/show.gsp	(revision 332)
+++ /trunk/grails-app/views/departmentDetailed/show.gsp	(revision 333)
@@ -40,4 +40,11 @@
                             
                             <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'description')}</td>
+                            
+                        </tr>
+                    
+                        <tr class="prop">
+                            <td valign="top" class="name">Comment:</td>
+                            
+                            <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'comment')}</td>
                             
                         </tr>
