{% set title_status_colors = {'Unknown' : '#595959', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42e335', 'Perfect' : '#1bdeff'} %} {% extends "template_base.html" %} {% block title %}Compatibility Priority Testing List{% endblock %} {% block append_head %} {% endblock %} {% block content %}

Compatibility Testing Priority List

The following list of titles have an issue closed since the last evaluation, or have not been evaluated recently, and should receive priority testing.

{% for title in titles %} {% if title.most_recent_test %} {% else %} {% endif %} {% endfor %}
Title Last Updated Recently Closed Issues Current Status
{{ title.title_name }}{{ title.most_recent_test.created_at.strftime('%b %-d, %Y') }}Never {% for issue in title.recently_closed_issues %} #{{ issue.number }} {% endfor %} {{ title.status }}
{% endblock %}