{% extends "base.html" %} {% load static %} {% block title %}Organizations{% endblock %} {% block content %} {% include "includes/sidenav.html" %}
{% if top_tags %}

Popular Tags

All {% for tag in top_tags %} {{ tag.name }} ({{ tag.org_count }}) {% endfor %}
{% endif %}

{% if selected_tag %} Organizations tagged with "{{ selected_tag.name }}" {% else %} Organizations {% endif %}

Total: {{ paginator.count }}

{% if organizations %}
{% for org in organizations %}
{% if org.logo %}
{{ org.name }} logo
{% else %}
{% endif %}

{{ org.name }}

{% if org.url %} {{ org.url }} {% endif %}
{% if request.user.is_superuser %} {% endif %}
{% if org.tags.all %}
{% for tag in org.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}

Stats

{{ org.domain_count }} Domains
{{ org.total_issues }} Issues
{{ org.project_count }} Projects
{{ org.repos.count }} Repos
{% for domain in org.domain_set.all|slice:":3" %}
{{ domain.name }}
{{ domain.clicks|default:"0" }} {{ domain.open_issues_list|length }} {{ domain.closed_issues_list|length }} {% if domain.email_event %} {% else %} {% endif %} {% with top_tester=domain.top_testers|first %} {% if top_tester %} {{ top_tester.username }} {% endif %} {% endwith %}
{% endfor %} {% if org.domain_count > 3 %}
+ {{ org.domain_count|add:"-3" }} more domains
{% endif %}
{% if org.email %} {{ org.email }} {% endif %} {% if org.twitter %} @{{ org.twitter }} {% endif %}
Joined {{ org.created|date:"M d, Y" }} View Details
{% endfor %}
{% if is_paginated %}
{% endif %} {% else %}

No organizations found

{% if selected_tag %}

Clear tag filter

{% endif %}
{% endif %}

Recently Viewed

{% if recently_viewed %}
{% for org in recently_viewed %}
{% if org.logo %}
{{ org.name }} logo
{% else %}
{% endif %} {{ org.name }}
{% endfor %}
{% else %}

No recently viewed organizations.

{% endif %}

Most Popular

{% if most_popular %}
{% for org in most_popular %}
{% if org.logo %}
{{ org.name }} logo
{% else %}
{% endif %} {{ org.name }}
{% endfor %}
{% else %}

No popular organizations yet.

{% endif %}
{% endblock %}