Version 13.59 by Alex Cotiugă on 2026/05/02 07:40

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