Wiki source code of homeopathsSheet
Version 1.16 by Jip-jan Alunkel on March 07, 18:13
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
1.1 | 1 | {{include reference="assets.pagemaker.macros"/}} |
2 | |||
3 | {{velocity}} | ||
4 | #set($discard = $services.localization.use('document', 'homeopaths.Code.translations')) | ||
5 | #set($discard = $services.localization.use('document', 'assets.pagemaker.translations')) | ||
6 | #set($discard = $xwiki.ssx.use('assets.pagemaker.WebHome', {'minify': false})) | ||
7 | #set($discard = $xwiki.jsx.use('assets.pagemaker.WebHome', {'minify': false, 'language': $context.language, 'myParameter': 'value'})) | ||
![]() |
1.5 | 8 | #set($theDoc = $xwiki.getDocument("${doc.fullName}").getTranslatedDocument()) |
![]() |
1.1 | 9 | #set($isInline = $xcontext.action == 'edit' && $request.get('editor') == 'inline') |
![]() |
1.5 | 10 | ## Create object (important for sheet binding, do not remove) |
11 | #set($theDocObj = $doc.getObject("homeopaths.Code.homeopathsClass", true)) | ||
![]() |
1.7 | 12 | #set($hasRight = !$isGuest && ($theDocObj.getProperty('user').value == $context.getUser() || $hasAdmin)) |
![]() |
1.5 | 13 | $theDoc.getContent() |
![]() |
1.4 | 14 | {{html wiki="true" clean="false"}} |
![]() |
1.7 | 15 | #if(!$isGuest) |
![]() |
1.4 | 16 | <script> |
17 | var pagemakerOffspring = "disable"; | ||
18 | </script> | ||
![]() |
1.7 | 19 | #end |
20 | #if($hasRight) | ||
![]() |
1.1 | 21 | <p class="buttons text-align-right"> |
22 | <a class="btn btn-primary" title="Edit" href="$doc.getURL("edit")?editor=wysiwyg" role="button" rel="nofollow"> | ||
23 | <span class="fa fa-pencil"></span> | ||
24 | <span class="btn-label">Edit contents</span> | ||
25 | </a> | ||
26 | </p> | ||
![]() |
1.7 | 27 | #end |
![]() |
1.1 | 28 | #set($spaceReference = $services.model.resolveDocument('', 'default', $doc.documentReference.lastSpaceReference).parent) |
29 | #set($spaceTitle = $spaceReference.getName()) | ||
30 | <div class="clearfix"></div> | ||
31 | #if($xcontext.action == "view") | ||
32 | <div id="${spaceTitle}" class="box sheet_properties"> | ||
33 | <h2>Details</h2> | ||
![]() |
1.15 | 34 | #set($classProperties = ['pmPractice','pmStreet','pmHousenumber','pmPostcode','pmCity','pmCounty','pmState','pmCountry']) |
![]() |
1.11 | 35 | #foreach($property in $classProperties) |
![]() |
1.13 | 36 | #if($theDocObj.getProperty($property).value != "") |
![]() |
1.16 | 37 | #if($property == 'pmStreet') |
38 | #set($translateKey = "homeopaths.classproperty.address") | ||
39 | #else | ||
40 | #set($translateKey = "homeopaths.classproperty.${property}") | ||
41 | #end | ||
![]() |
1.1 | 42 | <p class="property"> |
![]() |
1.16 | 43 | <span class="property-name">$services.localization.render($translateKey)</span> <span class="property-value">$doc.display($property)</span> |
![]() |
1.1 | 44 | </p> |
![]() |
1.13 | 45 | #end |
![]() |
1.12 | 46 | #end |
![]() |
1.11 | 47 | |
![]() |
1.7 | 48 | #if($hasRight) |
![]() |
1.1 | 49 | <p class="buttons text-align-right"> |
50 | <a class="btn btn-secondary" title="Edit" data-toggle="modal" data-target="#detailsModal" role="button" rel="nofollow"> | ||
51 | <span class="btn-label">Edit details</span> | ||
52 | </a> | ||
53 | </p> | ||
54 | #end | ||
55 | </div> | ||
![]() |
1.7 | 56 | #if($hasRight) ## Ook de rechts situatie uitlezen en meenemen. |
![]() |
1.1 | 57 | #set($form_start = { |
![]() |
1.5 | 58 | "id": "homeopaths_form", |
59 | "product": "homeopath details", | ||
![]() |
1.1 | 60 | "method": "post", |
61 | "url": "", | ||
62 | "use_captcha": "false" | ||
63 | }) | ||
![]() |
1.5 | 64 | #set($city = { |
65 | "id": "city", | ||
66 | "type": "text", | ||
![]() |
1.1 | 67 | "required" : "false", |
![]() |
1.5 | 68 | "label" : "City", |
![]() |
1.1 | 69 | "data-create-xobj" : "true", |
![]() |
1.5 | 70 | "data-xobj-classname" : "homeopaths.Code.homeopathsClass", |
![]() |
1.10 | 71 | "data-xobj-fieldname" : "pmCity", |
72 | "value": "$theDocObj.getProperty('pmCity').value" | ||
73 | }) | ||
74 | #set($submit = { | ||
75 | "id" : "edit_details", | ||
76 | "button-text" : "Save changes", | ||
77 | "clean": "true", | ||
78 | "help-block" : "" | ||
79 | }) | ||
80 | #set($form_end = { | ||
81 | "use_captcha": "false" | ||
82 | }) | ||
83 | <div class="modal fade" id="detailsModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> | ||
84 | <div class="modal-dialog modal-dialog-centered" role="document"> | ||
85 | <div class="modal-content"> | ||
86 | #createFormStart($form_start) | ||
87 | <div class="modal-header"> | ||
88 | <h3 class="modal-title">Details</h3> | ||
89 | <button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||
90 | <span aria-hidden="true">×</span> | ||
91 | </button> | ||
92 | </div> | ||
93 | <div class="modal-body"> | ||
![]() |
1.5 | 94 | #createFormElement($city) |
![]() |
1.1 | 95 | </div> |
96 | <div class="modal-footer"> | ||
97 | <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> | ||
98 | #createSubmit($submit) | ||
99 | </div> | ||
100 | #createFormEnd($form_end) | ||
101 | </div> | ||
102 | </div> | ||
103 | </div> | ||
104 | #end | ||
![]() |
1.7 | 105 | #else |
106 | This page can not be viewed in inline mode. | ||
![]() |
1.1 | 107 | #end |
108 | {{/html}} | ||
109 | {{/velocity}} |