source: trunk/grails-app/views/wizard/pages/_start.gsp @ 341

Last change on this file since 341 was 341, checked in by duh, 14 years ago
  • refactored wizard start page so that the big green buttons actually work
  • added a new page to load and modify a study, however this page is not yet functional
  • removed obsolete images
  • Property svn:keywords set to Date Rev Author
File size: 1.2 KB
Line 
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: 341 $
13 * $Author: duh $
14 * $Date: 2010-04-14 09:36:53 +0000 (wo, 14 apr 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="Modify an existing study" alt="Modify an existing study" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" />
24
25        <span class="info">
26                <span class="known">Known issues</span>
27                <ul>
28                        <li>navigating away from the wizard will result in loss of work. While you are currently warned when
29                            clicking links outside of the wizard, this problem still exists when clicking 'refresh' or the
30                                back / forward buttons</li>
31                </ul>
32        </span>
33
34        <!-- g:render template="pages/demo" //-->
35
36</wizard:pageContent>
Note: See TracBrowser for help on using the repository browser.