You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use JIKI together with Page Forms (former Semantic Forms).
I have a template which includes a JIKI JQL query: <jira jql="project = {{{Jira project|}}} AND status was not in (Closed, Done, Resolved) ON {{{last release|}}} AND createdDate <= {{{release date|}}} ORDER BY priority"></jira>
The values ({{{Jira project|}}} etc.) are filled by pages using this template.
However, JIKI doesn't seem to include them correctly as all I see is Error while calling JIRA... when opening a page using this template. The query works fine when I manually fill in the values but it looks like it's not working dynamically.
The text was updated successfully, but these errors were encountered:
I fixed this using a workaround:
Instead of <jira jql="project = {{{Jira project|}}} AND status was not in (Closed, Done, Resolved) ON {{{release date|}}} AND createdDate <= {{{release date|}}} ORDER BY priority"></jira>
I used <jira jql="project = {{#show: {{FULLPAGENAME}} | ?jira project }} AND status was not in (Closed, Done, Resolved) ON {{#time: Y-m-d | {{#show: {{FULLPAGENAME}} | ?release date }} }} AND createdDate <= {{#time: Y-m-d | {{#show: {{FULLPAGENAME}} | ?release date }} }} ORDER BY priority"></jira>
Hi,
I'm trying to use JIKI together with Page Forms (former Semantic Forms).
I have a template which includes a JIKI JQL query:
<jira jql="project = {{{Jira project|}}} AND status was not in (Closed, Done, Resolved) ON {{{last release|}}} AND createdDate <= {{{release date|}}} ORDER BY priority"></jira>
The values (
{{{Jira project|}}}
etc.) are filled by pages using this template.However, JIKI doesn't seem to include them correctly as all I see is
Error while calling JIRA...
when opening a page using this template. The query works fine when I manually fill in the values but it looks like it's not working dynamically.The text was updated successfully, but these errors were encountered: