Changeset 352
- Timestamp:
- Apr 20, 2010, 9:29:08 AM (13 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r345 r352 13 13 nimble.User owner 14 14 String title 15 16 // TODO: The following 4 fields should be moved into templates17 String code18 String researchQuestion19 String description20 String ecCode21 22 15 Date dateCreated 23 16 Date lastUpdated 24 17 Date startDate 18 19 // TODO: The following 4 fields should be moved into templates 20 //String code 21 //String researchQuestion 22 //String description 23 //String ecCode 24 25 25 26 26 static hasMany = [ -
trunk/grails-app/views/wizard/pages/_study.gsp
r340 r352 28 28 The title of the study you are creating 29 29 </wizard:textFieldElement> 30 <wizard:textFieldElement name="code" description="Code" error="code" value="${study?.code}">31 A code to reference your study by32 </wizard:textFieldElement>33 <wizard:textFieldElement name="researchQuestion" description="Research Question" error="researchQuestion" value="${study?.researchQuestion}">34 The research question35 </wizard:textFieldElement>36 <wizard:textFieldElement name="description" description="Description" error="description" value="${study?.description}">37 A short description summarizing your study38 </wizard:textFieldElement>39 <wizard:textFieldElement name="ecCode" description="Ethical Committee Code" error="ecCode" value="${study?.ecCode}">40 [youtube:irvC_1ujhKo]41 </wizard:textFieldElement>42 30 <wizard:dateElement name="startDate" description="Start date" error="startDate" value="${study?.startDate}"> 43 31 The start date of the study
Note: See TracChangeset
for help on using the changeset viewer.