"><?php echo $projectIdsNames[$i][1]; ?> </option> <?php } ?> </select> </div> <?php if ($issuesUnresolvedOthers) { ?> <?php $renderParameters = array('issues' => $issuesUnresolvedOthers, 'render_checkbox' => false, 'show_header' => true); $renderColumns = array('code', 'summary', 'priority', 'assignee'); $issuesRendered = Util::renderIssueTables($renderParameters, $renderColumns, $clientSettings); ?> <?php if (!$issuesRendered) { ?> <div>There are no unresolved issues assigned to others than you.</div> <?php } ?> <?php } else { ?> <div style="padding: 8px;">There are no unresolved issues assigned to others than you.</div> <?php }
$renderCheckboxDisabled = false; if ($sprint['started_flag']) { $renderCheckboxDisabled = true; } $params = array('issues' => $issues, 'render_checkbox' => true, 'checkbox_disabled' => $renderCheckboxDisabled, 'show_header' => false); Util::renderIssueTables($params, $columns, $clientSettings); echo '<div style="padding-bottom: 4px"></div>'; } else { echo '<div class="messageGreen">There are no issues for this sprint.</div>'; } } $issues = UbirimiContainer::get()['repository']->get(Board::class)->getBacklogIssues($clientId, $board, $onlyMyIssuesFlag, $loggedInUserId, $searchQuery, $completeStatuses); $params = array('issues' => $issues, 'render_checkbox' => true, 'show_header' => false, 'in_backlog' => true); echo '<div class="headerPageText" style="padding-bottom: 4px; padding-top: 4px">Backlog</div>'; if (isset($issues) && $issues->num_rows > 0) { Util::renderIssueTables($params, $columns, $clientSettings); } else { echo '<div class="messageGreen">There are no issues for the backlog.</div>'; } ?> </div> </td> <td width="30%" valign="top"> <div id="agileIssueContent" class="pageContentNoPadding" style="border-radius: 0px; overflow: auto"> <div class="headerPageText">Plan Mode</div> <div>Plan mode is where you scrub your backlog: review, estimate, and prioritise your stories and bugs, then create and plan sprints (iterations of work).</div> </div> </td> </tr> </table> </div>