1. Input information about change 2. Change annotation tags if needed
{{ form.comment.errors }} Comment: *
{{ form.weeks.errors }} Estimated time in next status:
(in weeks)
{{ form.tags }}

3. Select one action
  • State remains unchanged: {{ form.state.name }}
{% with form.get_transitions as transitions %} {% if transitions %}
    {% for transition in transitions %}
  • Changes state to: {{ transition.destination.name }}
  • {% endfor %} {% endif %}
{% endwith %} {% with form.get_next_states as next_states %} {% if next_states %}
    Jump to the next state: {% for state in next_states %} {% endfor %} {% endif %}
{% endwith %}
{{ form.new_state.errors }} Change to another state: