Changes between Version 39 and Version 40 of BluePrintCERT/RHoK2011


Ignore:
Timestamp:
11/30/11 12:56:41 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrintCERT/RHoK2011

    v39 v40  
    146146=== Information Page ===
    147147Create a custom 'information' method to display the data from the pr_address & pr_contact tables on a single screen, as per the screenshot.
     148
     149It is suggested to implement this as a 'Custom Method' of the person() REST controller:
     150* http://bazaar.launchpad.net/~flavour/sahana-eden/cert/view/head:/controllers/hrm.py#L471
     151
     152=== Events Page ===
     153This is a formatted view of the user's upcoming events
     154
     155It is suggested to implement this as a 'Custom Method' of the person() REST controller:
     156* http://bazaar.launchpad.net/~flavour/sahana-eden/cert/view/head:/controllers/hrm.py#L502
     157
     158This could start as just a list with a {{{response.s3.filter}}}?
     159
    148160=== Represent for Skill Competency Levels ===
    149161Volunteers have 3 Competency Levels for their Skills: Level 1, Level 2, and Level 3
     
    159171table.field.represent = my_represent_function
    160172}}}
    161 === Events Custom Method ===
    162 This is a formatted view of the user's upcoming events
    163173
    164 * http://bazaar.launchpad.net/~flavour/sahana-eden/cert/view/head:/controllers/hrm.py#L502
     174=== Deployment Page ===
     175This is to send a notification to selected group of recipients for a particular event type.
    165176
    166 This could start as just a list with a {{{response.s3.filter}}}?
    167 
    168 === Deployment Custom Method ===
    169 This is to send a notification to s elected group of recipients for a particular event type.
    170 
     177It is suggested to implement this as a 'Custom Method' of the event() REST controller:
    171178* http://bazaar.launchpad.net/~flavour/sahana-eden/cert/view/head:/controllers/hrm.py#L181
    172179
    173180This could just be an S3Search with preset filters?
     181
    174182=== Scale Uploaded Images ===
    175183See: [wiki:Projects/Basic#ScaleUploadedImages ScaleUploadedImages]