Changes between Version 39 and Version 40 of BluePrintCERT/RHoK2011
- Timestamp:
- 11/30/11 12:56:41 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrintCERT/RHoK2011
v39 v40 146 146 === Information Page === 147 147 Create a custom 'information' method to display the data from the pr_address & pr_contact tables on a single screen, as per the screenshot. 148 149 It 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 === 153 This is a formatted view of the user's upcoming events 154 155 It 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 158 This could start as just a list with a {{{response.s3.filter}}}? 159 148 160 === Represent for Skill Competency Levels === 149 161 Volunteers have 3 Competency Levels for their Skills: Level 1, Level 2, and Level 3 … … 159 171 table.field.represent = my_represent_function 160 172 }}} 161 === Events Custom Method ===162 This is a formatted view of the user's upcoming events163 173 164 * http://bazaar.launchpad.net/~flavour/sahana-eden/cert/view/head:/controllers/hrm.py#L502 174 === Deployment Page === 175 This is to send a notification to selected group of recipients for a particular event type. 165 176 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 177 It is suggested to implement this as a 'Custom Method' of the event() REST controller: 171 178 * http://bazaar.launchpad.net/~flavour/sahana-eden/cert/view/head:/controllers/hrm.py#L181 172 179 173 180 This could just be an S3Search with preset filters? 181 174 182 === Scale Uploaded Images === 175 183 See: [wiki:Projects/Basic#ScaleUploadedImages ScaleUploadedImages]