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

Last change on this file since 359 was 359, checked in by duh, 13 years ago
  • set keyword expansion
  • Property svn:keywords set to Date Author Rev
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: 359 $
13 * $Author: duh $
14 * $Date: 2010-04-20 12:42:20 +0000 (di, 20 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        <g:if env="development">
26        <span class="info">
27                <span class="known">Known issues</span>
28                <ul>
29                        <li>navigating away from the wizard will result in loss of work. While you are currently warned when
30                            clicking links outside of the wizard, this problem still exists when clicking 'refresh' or the
31                                back / forward buttons</li>
32                </ul>
33        </span>
34        <!--g:render template="pages/demo"//-->
35        </g:if>
36
37</wizard:pageContent>
Note: See TracBrowser for help on using the repository browser.