Skip to content

Commit

Permalink
replace list with sprint
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelfolaron committed Feb 7, 2024
1 parent fa49b4d commit e03c0b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Domain/Tickets/Templates/showAll.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<th class="effort-col"><?= $tpl->__("label.effort"); ?></th>
<th class="priority-col"><?= $tpl->__("label.priority"); ?></th>
<th class="user-col"><?= $tpl->__("label.editor"); ?>.</th>
<th class="sprint-col"><?= $tpl->__("label.list"); ?></th>
<th class="sprint-col"><?= $tpl->__("label.sprint"); ?></th>
<th class="tags-col"><?= $tpl->__("label.tags"); ?></th>
<th class="duedate-col"><?= $tpl->__("label.due_date"); ?></th>
<th class="planned-hours-col"><?= $tpl->__("label.planned_hours"); ?></th>
Expand Down
4 changes: 2 additions & 2 deletions app/Domain/Tickets/Templates/submodules/ticketDetails.sub.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,12 +230,12 @@ class="accordion-toggle"
</div>

<div class="form-group">
<label class="control-label"><?php echo $tpl->__('label.list'); ?></label>
<label class="control-label"><?php echo $tpl->__('label.sprint'); ?></label>
<div class="">

<select id="sprint-select" class="span11" name="sprint"
data-placeholder="<?php echo $ticket->sprint ?>">
<option value=""><?php echo $tpl->__('label.not_assigned_to_list'); ?></option>
<option value=""><?php echo $tpl->__('label.backlog'); ?></option>
<?php
if ($tpl->get('sprints')) {
foreach ($tpl->get('sprints') as $sprintRow) { ?>
Expand Down

0 comments on commit e03c0b7

Please sign in to comment.