1 | <% |
---|
2 | /** |
---|
3 | * Templates page |
---|
4 | * |
---|
5 | * @author Jeroen Wesbeek |
---|
6 | * @since 20100303 |
---|
7 | * @package wizard |
---|
8 | * @see dbnp.studycapturing.WizardTagLib::previousNext |
---|
9 | * @see dbnp.studycapturing.WizardController |
---|
10 | * |
---|
11 | * Revision information: |
---|
12 | * $Rev: 959 $ |
---|
13 | * $Author: j.a.m.wesbeek@umail.leidenuniv.nl $ |
---|
14 | * $Date: 2010-10-20 19:13:14 +0000 (wo, 20 okt 2010) $ |
---|
15 | */ |
---|
16 | %> |
---|
17 | <wizard:pageContent> |
---|
18 | |
---|
19 | <span class="bigtext">What would you like to do?</span> |
---|
20 | |
---|
21 | <wizard:ajaxButton name="next" class="bigbutton" value="Create a new study" alt="Create a new study" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" /> |
---|
22 | |
---|
23 | <wizard:ajaxButton name="modify" class="bigbutton" value="Edit an existing study" alt="Edit an existing study" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" /> |
---|
24 | |
---|
25 | <wizard:ajaxButton name="import" class="bigbutton" value="Import a study" alt="Import a study" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" /> |
---|
26 | |
---|
27 | <span class="info"> |
---|
28 | <span class="title">Create a new study via the step-by-step interface</span> |
---|
29 | This web interface will guide you through the total incorporation of your study in several steps: |
---|
30 | <ul> |
---|
31 | <li>Include all general study information</li> |
---|
32 | <li>Include all subject specific information</li> |
---|
33 | <li>Include all information on all variables of the study (treatment, challenges, sampling etc.)</li> |
---|
34 | <li>Confirmation of all information</li> |
---|
35 | </ul> |
---|
36 | It is possible to go back and forth in the tool, without losing information. Definitive storage will only occur after the confirmation step. |
---|
37 | <span class="title">Create a new study via the spreadsheet importer</span> |
---|
38 | You can do this by choosing Studies > Import data in the menu. |
---|
39 | This part of the applications will help you to upload large studies. This import function can be used for all study components (study, subject and event information) at once. |
---|
40 | <span class="title">Edit an existing study</span> |
---|
41 | Only study owners can modify a their own studies. This part of the application can be used to extend the study information, for instance with new measurements. |
---|
42 | </span> |
---|
43 | |
---|
44 | <g:if env="development"><!--g:render template="pages/demo"//--></g:if> |
---|
45 | |
---|
46 | </wizard:pageContent> |
---|