matejak/estimagus

View on GitHub
estimage/plugins/redhat_compliance/templates/rhcompliance-retrotree.html

Summary

Maintainability
Test Coverage
{% extends "tree_view_retrospective.html" %}

{% block epics_wip %}
    <h4>Committed</h4>
    <ul>
    {% for card in cards -%}
    {% if status_of(card).relevant_and_not_done_yet and card.tier == 0 %}
    {{ utils.render_epic_retro(card, model, today, recursive=false) }}
    {% endif %}
    {% endfor -%}
    </ul>
    <h4>Planned</h4>
    <ul>
    {% for card in cards -%}
    {% if status_of(card).relevant_and_not_done_yet and card.tier == 1 %}
    {{ utils.render_epic_retro(card, model, today, recursive=false) }}
    {% endif %}
    {% endfor -%}
    </ul>
{% endblock %}