Refactored the Kernel registration fluent interface to be more readable, better suppo...
[castle.git] / Samples / MonoRail / WizardSample / WizardSampleSite / views / simplewizard / ConfirmationStep.vm
blob844088af9cc6188d4ada4f904ab28b18d34f9d42
1 So here's a summary of the account that we're about to create:\r
2 \r
3 <h4>Account</h4>\r
4 \r
5 <p>$account.name</p>\r
6 <p>$account.username</p>\r
7 <p>$account.email</p>\r
8 \r
9 <h4>Interests</h4>\r
11 <ul>\r
12 #foreach($interest in $account.interests)\r
13   <li>$interest</li>\r
14 #end\r
15 </ul>\r
17 <p>If everything is OK click Next, otherwise click Back to change the information</p> \r
19 <p>\r
20 #if ($WizardHelper.HasPreviousStep())\r
21     $WizardHelper.LinkToPrevious("Back")\r
22 #end\r
23 </p>\r
25 <p>\r
26 #if ($WizardHelper.HasNextStep())\r
27     $WizardHelper.LinkToNext("Next")\r
28 #end\r
29 </p>