{% extends "base_dashboard.html" %} {% load static %} {% block title %} Manage Domains - {% env 'PROJECT_NAME' %} Dashboard {% endblock title %} {% block description %} Manage and create new domains in the {% env 'PROJECT_NAME' %} dashboard. Add domain details such as name, URL, logo, email, and GitHub link. {% endblock description %} {% block keywords %} {% env 'PROJECT_NAME' %}, domains, manage, create, add, dashboard, name, url, logo, email, github {% endblock keywords %} {% block og_title %} Manage Domains - {% env 'PROJECT_NAME' %} Dashboard {% endblock og_title %} {% block og_description %} Manage and create new domains with details like name, URL, logo, email, and GitHub in the {% env 'PROJECT_NAME' %} dashboard. {% endblock og_description %} {% block content %}
{% include "includes/organization_sidenav.html" %}
{% if domains %} {% for domain in domains %}
{% if domain.logo %} {{ domain.name }} {% else %}
{% endif %}

{{ domain.name }}

{% if domain.email %}

{{ domain.email }}

{% endif %}
{% if request.user.is_superuser %} {% endif %}
Issues {{ domain.open_issues.count }}/{{ domain.closed_issues.count }}
Open/Closed
Clicks {{ domain.clicks|default:"0" }}
Total Views
Top Tester {% with top_tester=domain.top_tester %} {% if top_tester %} {{ top_tester.username }} {% else %} - {% endif %} {% endwith %}
Created: {{ domain.created|date:"M d, Y" }} {% if domain.is_active %} Active {% else %} Inactive {% endif %}
{% endfor %} {% else %}

No domains found!

{% endif %}
{% endblock content %}