source: trunk/grails-app/views/wizard/pages/_groups.gsp @ 157

Last change on this file since 157 was 157, checked in by duh, 14 years ago
  • temporary commit
File size: 814 bytes
Line 
1<%
2/**
3 * Subjects 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: 140 $
13 * $Author: duh $
14 * $Date: 2010-01-27 13:32:41 +0100 (Wed, 27 Jan 2010) $
15 */
16%>
17<wizard:pageContent>
18<div class="grouping">
19        <div class="subjects">
20                <ol class="selectable">
21                        <g:each var="subject" status="i" in="${subjects}"><li class="ui-widget-content">Subject ${i} ${subject.species}</li></g:each>
22                </ol>
23        </div>
24
25        <div class="groups">
26                <div class="ui-widget-content group">
27                        <h4 class="ui-widget-header">Group 1</h4>
28                </div>
29
30                <div class="ui-widget-content group">
31                        <h4 class="ui-widget-header">Group 2</h4>
32                </div>
33        </div>
34</div>
35</wizard:pageContent>
Note: See TracBrowser for help on using the repository browser.