You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm trying to create a Blueprint Form in combination with an XML Template to create pages.
I already do have a form in .soy format, which includes a Date-Picker to get the date from a form:
simplebp.soy:
..
<form action="#" method="post" class="aui">
<fieldset>
<div class="field-group">
<label for="vdatum">{getText('my.blueprint.form.label.title.vDATUM')}</label>
<input class="aui-datepicker" name="vDATUM" id="vdatum" type="date" size="10" autocomplete="off">
</div>
..
The datepicker is working fine, and when calling vDATUM from an XML-template it is filled with the chosen date:
myTemplate.xml:
..
<tr>
<th colspan="1">Datum</th>
<td colspan="1">
<div class="content-wrapper">
<p><at:var at:name="vDATUM" at:rawxhtml="true"/></p>
</div>
</td>
</tr>
..
How can I change the template so, that the date is annotated like the Confluence DateTime-format (the "double // method) for use in a Page Properties Index page?
Syntax:
<time datetime="2019-05-23">
NOT WORKING:
<time datetime="<at:var at:name="vDATUM" at:rawxhtml="true"/>">
Can anyone help me out?