1 | <% |
---|
2 | /** |
---|
3 | * Study page |
---|
4 | * |
---|
5 | * @author Jeroen Wesbeek |
---|
6 | * @since 20100113 |
---|
7 | * @package wizard |
---|
8 | * @see dbnp.studycapturing.WizardTagLib::previousNext |
---|
9 | * @see dbnp.studycapturing.WizardController |
---|
10 | * |
---|
11 | * Revision information: |
---|
12 | * $Rev: 213 $ |
---|
13 | * $Author: duh $ |
---|
14 | * $Date: 2010-02-25 15:18:22 +0000 (do, 25 feb 2010) $ |
---|
15 | */ |
---|
16 | %> |
---|
17 | <wizard:pageContent> |
---|
18 | <span class="info"> |
---|
19 | <span class="title">Define the basic properties of your study</span> |
---|
20 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce laoreet leo nec leo vehicula quis scelerisque elit pulvinar. Vivamus arcu dui, adipiscing eu vestibulum id, consectetur et erat. Aenean risus mauris, placerat et lacinia vulputate, commodo eget ligula. Pellentesque ornare blandit metus ac dictum. Donec scelerisque feugiat quam, a congue ipsum malesuada nec. Donec vulputate, diam eget porta rhoncus, est mauris ullamcorper turpis, vitae dictum risus justo quis justo. Aenean blandit feugiat accumsan. Donec porttitor bibendum elementum. |
---|
21 | </span> |
---|
22 | |
---|
23 | <wizard:textFieldElement name="title" description="Title" error="title" value="${study?.title}"> |
---|
24 | The title of the study you are creating |
---|
25 | </wizard:textFieldElement> |
---|
26 | <wizard:textFieldElement name="code" description="Code" error="code" value="${study?.code}"> |
---|
27 | A code to reference your study by |
---|
28 | </wizard:textFieldElement> |
---|
29 | <wizard:textFieldElement name="researchQuestion" description="Research Question" error="researchQuestion" value="${study?.researchQuestion}"> |
---|
30 | The research question |
---|
31 | </wizard:textFieldElement> |
---|
32 | <wizard:textFieldElement name="description" description="Description" error="description" value="${study?.description}"> |
---|
33 | A short description summarizing your study |
---|
34 | </wizard:textFieldElement> |
---|
35 | <wizard:textFieldElement name="ecCode" description="Ethical Committee Code" error="ecCode" value="${study?.ecCode}"> |
---|
36 | [youtube:irvC_1ujhKo] |
---|
37 | </wizard:textFieldElement> |
---|
38 | <wizard:dateElement name="startDate" description="Start date" error="startDate" value="${study?.startDate}"> |
---|
39 | The start date of the study |
---|
40 | </wizard:dateElement> |
---|
41 | </wizard:pageContent> |
---|