Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | {{html wiki="true"}} | ||
3 | #set ($discard = $doc.use('TourCode.TourClass')) | ||
4 | #set ($isEditing = $xcontext.action == 'edit') | ||
5 | (% class="xform" %) | ||
6 | ((( | ||
7 | ## Mark tour as hidden | ||
8 | <input type="hidden" name="xhidden" id="xhidden" value="1"> | ||
9 | ; <label #if($isEditing)for="TourCode.TourClass_0_description"#end>$escapetool.xml($doc.displayPrettyName('description', false, false))</label> | ||
10 | : $doc.display('description') | ||
11 | #if ($isEditing) | ||
12 | ; <label for="TourCode.TourClass_0_isActive">$doc.display('isActive')$escapetool.xml($doc.displayPrettyName('isActive', false, false))</label> | ||
13 | #else | ||
14 | ; <label>$escapetool.xml($doc.displayPrettyName('isActive', false, false))</label> | ||
15 | : $doc.display('isActive') | ||
16 | #end | ||
17 | ; <label #if($isEditing)for="TourCode.TourClass_0_targetPage"#end>$escapetool.xml($doc.displayPrettyName('targetPage', false, false))</label> | ||
18 | : $doc.display('targetPage') | ||
19 | ; <label #if($isEditing)for="TourCode.TourClass_0_targetClass"#end>$escapetool.xml($doc.displayPrettyName('targetClass', false, false))</label> | ||
20 | : $doc.display('targetClass') | ||
21 | |||
22 | ## Display tour's steps | ||
23 | <dl> | ||
24 | <dt> | ||
25 | <label>$services.localization.render('tour.steps')</label> | ||
26 | </dt> | ||
27 | <dd> | ||
28 | #set($pageMode = $xcontext.action) | ||
29 | {{include reference="TourCode.StepsListing"/}} | ||
30 | </dd> | ||
31 | </dl> | ||
32 | |||
33 | ))) | ||
34 | {{/html}} | ||
35 | {{/velocity}} |