{% extends "base.html" %} {% load gravatar %} {% load static %} {% block title %} Domain Scoreboard {% endblock title %} {% block description %} Track and compare domain performance. View open and closed issues, email events, and the top tester for each domain to monitor activity and engagement. {% endblock description %} {% block keywords %} Domain Scoreboard, Track Domain Performance, Open Issues, Closed Issues, Email Events, Top Tester {% endblock keywords %} {% block og_title %} Domain Scoreboard - Monitor Domain Performance {% endblock og_title %} {% block og_description %} Access the domain scoreboard to track and compare domain performance. View details on open and closed issues, email events, and the top tester for each domain. {% endblock og_description %} {% load humanize %} {% block style %} {% include "includes/sidenav.html" %} {% endblock style %} {% block content %}

Domain Scoreboard

{% for domain in scoreboard %} {% endfor %}
Logo Domain Name Open Issues Closed Issues Email Event Time of Last Event Top Domain Tester
{% if domain.get_logo and domain.get_logo != "None" %} {{ domain.name }} {% endif %} {{ domain.name }} {{ domain.open_issues_count }} {{ domain.closed_issues_count }} {{ domain.email_event }} {{ domain.modified|timesince }} ago {{ domain.top_tester|default:"" }}
{% if is_paginated %}
{% if page_obj.has_previous %} Previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next {% endif %}
{% endif %}
{% endblock content %}