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

Last change on this file since 145 was 145, checked in by duh, 14 years ago
  • wizard subjects page now build a table with features, does not work properly yet
  • youtube autoplay help items are possible now
  • development grouping page for selecting subjects and grouping them by dragging and dropping
File size: 719 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-header droppable">
27                        <h1>Group 1<h1>
28                        <p>drop here...</p>
29                </div>
30        </div>
31</div>
32</wizard:pageContent>
Note: See TracBrowser for help on using the repository browser.