Version 13.146 by Alex Cotiugă on 2026/05/02 08:49

Show last authors
1 {{velocity wiki="false"}}
2 #if ($xcontext.action == 'get')
3 asdasd
4 test
5 #set ($message = '')
6 #set ($statusCode = 200)
7
8 #set ($statusCode = 400)
9 #set ($message = 'error')
10
11 #set ($discard = $response.setStatus($statusCode))
12 #jsonResponse({'message': $request.parameterNames})
13 #end
14 {{/velocity}}
15
16 {{velocity}}
17 #set ($discard = $xwiki.ssx.use('contact.WebHome'))
18 #set ($xobject = $doc.getObject('Agnease.Code.ContactForm.ContactFormClass'))
19 #set ($xclass = $xobject.xWikiClass)
20 #set ($editing = true)
21 = Tell Us More About Your Project =
22 You do not need to have a full specification. A short description is enough to start the conversation.
23 {{html clean="false"}}
24 <div class="row">
25 <div class="xform col-xs-7">
26 <form id="contactForm">
27 <dl>
28 #foreach ($property in $xclass.properties)
29 #if ($property.name == 'hosting')
30 <hr>
31 <h3>Optional project details</h3>
32 <p>These details help us understand the scope and suggest practical next steps.</p>
33 #end
34 <dt #if (!$editing && $hasEdit)
35 class="editableProperty"
36 #set ($xobjectPropertyReference = $xobject.getPropertyReference($property.name))
37 data-property="$escapetool.xml($services.model.serialize($xobjectPropertyReference))"
38 data-property-type="object"#end>
39 ## This must match the id generated by the $doc.display() method below.
40 #set ($propertyId = "${xclass.name}_${xobject.number}_$property.name")
41 <label#if ($editing) for="$escapetool.xml($propertyId)"#end>
42 $escapetool.xml($property.translatedPrettyName)
43 </label>
44 ## Support for specifying a translation key as hint in the property definition.
45 <span class="xHint">$!escapetool.xml($services.localization.render($property.hint))</span>
46 </dt>
47 <dd>$doc.display($property.name, 'edit').replace('{{html clean="false" wiki="false"}}', '').replace("{{/html}}", '')</dd>
48 #end
49 #if (!$xclass.properties || $xclass.properties.size() == 0)
50 ## Keep the empty definition term in order to have valid HTML.
51 <dt></dt>
52 <dd>$escapetool.xml($services.localization.render('xclass.defaultObjectSheet.noProperties'))</dd>
53 #end
54 </dl>
55 <p>Your information will only be used to respond to this request.</p>
56 ##<p>Your information will only be used to respond to this request. See the Privacy Policy for details.</p>
57 <input id="contactSubmit" type="submit" class="btn btn-primary" value="Send my request">
58 </form>
59 {{/html}}
60 {{html clean="false" wiki="true"}}
61 <div class="reviewNotifications">
62 <div class="hidden reviewNotificationSuccess">
63
64 {{success}}reviewNotification{{/success}}
65
66 </div>
67 <div class="hidden reviewNotificationError">
68
69 {{error}}reviewNotification{{/error}}
70
71 </div>
72 </div>
73 {{/html}}
74 {{html clean="false"}}
75 </div>
76 <div class="col-xs-5">
77 <div class="widget">
78 <h4>$services.icon.renderHTML('check') How Agnease can help</h4>
79 <ul>
80 <li>XWiki upgrades and long-term maintenance</li>
81 <li>Knowledge bases, intranets, SOP and documentation workflows</li>
82 <li>Custom XWiki applications and integrations</li>
83 <li>LDAP, SSO, OIDC, SAML, and MFA setup</li>
84 <li>Migrations from SharePoint, Confluence, MediaWiki, or file-based documentation</li>
85 <li>Security-aware reviews and platform stabilization</li>
86 </ul>
87 </div>
88 <div class="widget">
89 <h4>$services.icon.renderHTML('right') What happens next?</h4>
90 <ol>
91 <li>Your request is reviewed.</li>
92 <li>You receive a reply with clarifying questions or suggested next steps.</li>
93 <li>If useful, we schedule a short call to discuss scope, timeline, and estimated effort.</li>
94 </ol>
95 </div>
96 </div>
97 </div>
98 {{/html}}
99 {{/velocity}}