Ignore:
Timestamp:
Jan 27, 2009, 11:02:59 PM (15 years ago)
Author:
gav
Message:

Setup Boostrap and DataSource? so that we have demo data in prod env for deployin
g demo. Adjust the entry domain and rebuild views and controller.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/grails-app/views/entry/list.gsp

    r25 r39  
    2424                                <g:sortableColumn property="id" title="Id" />
    2525                       
     26                                <th>Task</th>
     27                           
    2628                                <g:sortableColumn property="comments" title="Comments" />
    2729                       
    2830                                <g:sortableColumn property="date" title="Date" />
    2931                       
    30                                 <g:sortableColumn property="duration" title="Duration" />
     32                                <g:sortableColumn property="durationHours" title="Duration Hours" />
    3133                       
    32                                 <th>Entry Type</th>
    33                            
    34                                 <th>Person</th>
    35                            
     34                                <g:sortableColumn property="durationMinutes" title="Duration Minutes" />
     35                       
    3636                        </tr>
    3737                    </thead>
     
    4242                            <td><g:link action="show" id="${entryInstance.id}">${fieldValue(bean:entryInstance, field:'id')}</g:link></td>
    4343                       
     44                            <td>${fieldValue(bean:entryInstance, field:'task')}</td>
     45                       
    4446                            <td>${fieldValue(bean:entryInstance, field:'comments')}</td>
    4547                       
    4648                            <td>${fieldValue(bean:entryInstance, field:'date')}</td>
    4749                       
    48                             <td>${fieldValue(bean:entryInstance, field:'duration')}</td>
     50                            <td>${fieldValue(bean:entryInstance, field:'durationHours')}</td>
    4951                       
    50                             <td>${fieldValue(bean:entryInstance, field:'entryType')}</td>
    51                        
    52                             <td>${fieldValue(bean:entryInstance, field:'person')}</td>
     52                            <td>${fieldValue(bean:entryInstance, field:'durationMinutes')}</td>
    5353                       
    5454                        </tr>
Note: See TracChangeset for help on using the changeset viewer.