source: trunk/grails-app/views/wizard/pages/_study.gsp @ 163

Last change on this file since 163 was 163, checked in by duh, 14 years ago
  • added some dummy youtube videos (see the help icon for the ethical committee code and the last wizard page)
  • Property svn:keywords set to Rev Author Date
File size: 1.5 KB
Line 
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: 163 $
13 * $Author: duh $
14 * $Date: 2010-02-02 15:13:17 +0000 (di, 02 feb 2010) $
15 */
16%>
17<wizard:pageContent>
18        <wizard:textFieldElement name="title" description="Title" error="title" value="${study?.title}">
19                The title of the study you are creating
20        </wizard:textFieldElement>
21        <wizard:textFieldElement name="code" description="Code" error="code" value="${study?.code}">
22                A code to reference your study by
23        </wizard:textFieldElement>
24        <wizard:textFieldElement name="researchQuestion" description="Research Question" error="researchQuestion" value="${study?.researchQuestion}">
25                The research question
26        </wizard:textFieldElement>
27        <wizard:textFieldElement name="description" description="Description" error="description" value="${study?.description}">
28                A short description summarizing your study
29        </wizard:textFieldElement>
30        <wizard:textFieldElement name="ecCode" description="Ethical Committee Code" error="ecCode" value="${study?.ecCode}">
31                [youtube:irvC_1ujhKo]
32        </wizard:textFieldElement>
33        <wizard:dateElement name="startDate" description="Start date" error="startDate" value="${study?.startDate}">
34                The start date of the study     
35        </wizard:dateElement>
36        <wizard:templateElement name="template" description="Template" value="${study?.template}">
37                The meta data template to use for this study
38        </wizard:templateElement>
39</wizard:pageContent>
Note: See TracBrowser for help on using the repository browser.