{% extends "milestone_base.html" %} {% block jsheader %} {% endblock %} {# this should be imported from somewhere else, not pasted #} {% macro statustext(update) %} {% if update %} {% if update.pending %} pending {% endif %} {{ update.status }} {% endif %} {% endmacro %} {% block body %}
{% for spin in spins %}

{{ spin.name }}

  • State: {{ spin.state.name }}
  • Date Requested: {{ spin.date_requested }}
  • Type: {{ spin.spin_type }}
  • Location: {{ spin.url }}
Updates in Spin
{% for update in spin.updates %} {% else %} {% endfor %}
Type Component Title Status
{{ update | updatetype }} {{ update.bugs[0].component }} {{ update.title }} {{ statustext(update) }}
{% else %}

No spins yet for this milestone

{% endfor %}
{% endblock %}