Last change
on this file since 299 was
299,
checked in by duh, 13 years ago
|
|
-
Property svn:keywords set to
Date Rev Author
|
File size:
1.1 KB
|
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: 299 $ |
---|
13 | * $Author: duh $ |
---|
14 | * $Date: 2010-03-22 13:40:35 +0000 (ma, 22 mrt 2010) $ |
---|
15 | */ |
---|
16 | %> |
---|
17 | <wizard:pageContent> |
---|
18 | <div class="grouping"> |
---|
19 | |
---|
20 | <div class="subjects"> |
---|
21 | <g:each var="subject" status="i" in="${subjects}"><div class="subject">${subject.name}</div> |
---|
22 | </g:each> |
---|
23 | </div> |
---|
24 | <div class="middle"> |
---|
25 | <div class="actions"> |
---|
26 | <div class="add"></div> |
---|
27 | <div class="remove"></div> |
---|
28 | </div> |
---|
29 | </div> |
---|
30 | <div class="right"> |
---|
31 | <div class="form"> |
---|
32 | name: <g:textField name="name" value="" /><br /> |
---|
33 | <wizard:ajaxButton name="add" value="Add Group" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" /> |
---|
34 | </div> |
---|
35 | <div class="groups"> |
---|
36 | <g:each var="group" status="i" in="${groups}"> |
---|
37 | <div class="group"> |
---|
38 | <div class="label">${group.name}</div> |
---|
39 | <div class="subjects"> |
---|
40 | </div> |
---|
41 | </div> |
---|
42 | </g:each> |
---|
43 | </div> |
---|
44 | </div> |
---|
45 | </div> |
---|
46 | </wizard:pageContent> |
---|
Note: See
TracBrowser
for help on using the repository browser.