{% extends "layout.twig" %} {% set dayLabels = constant('App\\Domain\\SprintWeek::DAY_LABELS') %} {% block content %}

Settings

Sprint

Changes save automatically.

Weeks

{{ weeks|length }} week{{ weeks|length == 1 ? '' : 's' }} — derived from the sprint's start and end dates. Edit those above to add or remove rows. Tick the weekdays that are workdays for each week; the count feeds the Arbeitstage header on the sprint page.

{% for label in dayLabels %} {% endfor %} {% for w in weeks %} {% for bit, label in dayLabels %} {% endfor %} {% endfor %}
# KW Start{{ label }}Arbeitstage
{{ w.sortOrder }} KW{{ w.isoWeek }} {{ w.startDate }} {{ w.maxWorkingDays }}

Shortening the date range deletes trailing weeks and any data attached to them.

Workers

Available

    {% for w in availableWorkers %}
  • {{ w.name }}
  • {% endfor %}
No other active workers.

In sprint (drag to reorder)

    {% for sw in sprintWorkers %}
  • {{ sw.workerName }}
  • {% endfor %}
No workers assigned yet.

RTB (Run-the-Business) is informational and does not reduce computed capacity.

{% endblock %}