I want to know if it’s feasible to achieve a specific setup in Confluence. My objective is to display a table that lists Epics related to a specific fix version. Additionally, I want to include extra fields for comments and checkboxes in that same table.
Here’s a sample layout I envision:
<table>
<thead>
<tr>
<th>Jira Issue ID</th>
<th>Epic Title</th>
<th>Version</th>
<th>Confluence Feedback</th>
</tr>
</thead>
<tbody>
<tr>
<td>54321</td>
<td>Feature A</td>
<td>2.1</td>
<td>Initial testing complete</td>
</tr>
<tr>
<td>54322</td>
<td>Feature B</td>
<td>2.1</td>
<td>Awaiting input</td>
</tr>
</tbody>
</table>
My key question is: Can I configure the table so that if the fix version changes, the rows adapt accordingly, ensuring the last column aligns with the correct issue? I haven’t been able to locate a macro that facilitates this functionality.