{% extends "base.html" %} {% load static %} {% load gravatar %} {% load humanize %} {% block title %}{{ organization.name }} - Organization Details{% endblock %} {% block description %} View organization details, including name, description, domains, and team information. {% endblock %} {% block keywords %}organization details, {{ organization.name }}, team information, domains{% endblock %} {% block content %} {% include "includes/sidenav.html" %}
{% if organization.logo %}
{{ organization.name }} logo
{% else %}
{% endif %}

{{ organization.name }}

{% if organization.tagline %}

{{ organization.tagline }}

{% endif %} {% if organization.url %} {{ organization.url }} {% endif %} {% if organization.type %}
{{ organization.get_type_display }}
{% endif %}

Contact Information

{% if organization.email %} {% endif %}

Social Media & Community

{% if organization.twitter %} {% endif %} {% if organization.facebook %} {% endif %} {% if organization.matrix_url %} {% endif %} {% if organization.slack_url %} {% endif %} {% if organization.discord_url %} {% endif %} {% if organization.gitter_url %} {% endif %} {% if organization.zulipchat_url %} {% endif %} {% if organization.element_url %} {% endif %}
{% if organization.country or organization.address_line_1 %}

Location

{% if organization.country %}
{{ organization.country }}
{% endif %} {% if organization.address_line_1 %}

{{ organization.address_line_1 }}

{% if organization.address_line_2 %}

{{ organization.address_line_2 }}

{% endif %}

{% if organization.city %}{{ organization.city }}{% endif %} {% if organization.state %}, {{ organization.state }}{% endif %} {% if organization.postal_code %}{{ organization.postal_code }}{% endif %}

{% endif %}
{% endif %} {% if organization.latitude and organization.longitude %}
{% endif %}

Organization Details

Added on {{ organization.created|date:"F j, Y" }}
{% if organization.description %}

{{ organization.description }}

{% endif %} {% if organization.license %}

License: {{ organization.license }}

{% endif %} {% if organization.categories %}

Categories:

{% for category in organization.categories %} {{ category }} {% endfor %}
{% endif %} {% if organization.tech_tags %}

Technologies:

{% for tag in organization.tech_tags %} {{ tag }} {% endfor %}
{% endif %} {% if organization.topic_tags %}

Topics:

{% for tag in organization.topic_tags %} {{ tag }} {% endfor %}
{% endif %}

GitHub Integration

{% if github_url %} {% if organization.repos_updated_at %}
Last updated: {{ organization.repos_updated_at|date:"F j, Y, g:i a" }}
Repository updates are limited to once per day.
{% endif %} {% else %}

No GitHub URL set for this organization. Add one to sync repositories.

{% csrf_token %}

Example: https://github.com/OWASP

{% endif %}

Contributor Resources

{% if organization.contributor_guidance_url %} {% endif %} {% if organization.ideas_link %} {% endif %}

Domains

{{ organization.domain_set.count }}

Team Members

Join Team
{{ organization.members.count }}

Total Points

{{ organization.team_points }}

Views

{{ view_count }}
{% if organization.tags.all %}

Tags

{% for tag in organization.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}

Leadership

{% if organization.admin %}

Administrator

{{ organization.admin.username }}

{{ organization.admin.username }}

{% if organization.admin.profile.user_title %}

{{ organization.admin.profile.user_title }}

{% endif %}
{% endif %} {% if organization.managers.all %}

Managers

{% for manager in organization.managers.all %}
{{ manager.username }}

{{ manager.username }}

{% if manager.profile.user_title %}

{{ manager.profile.user_title }}

{% endif %}
{% endfor %}
{% endif %}
{% if top_projects %}

Top Projects

{% for project_data in top_projects %}
{% if project_data.project.logo %} {{ project_data.project.name }} logo {% else %}
{% endif %}

{{ project_data.project.name }}

{{ project_data.project.description }}

{{ project_data.total_prs|intcomma }} Pull Requests
{{ project_data.total_contributors|intcomma }} Contributors
{% endfor %}
{% endif %} {% if top_contributors %}

Top Contributors

{% for contributor in top_contributors %}
{% if contributor.avatar_url %} {{ contributor.username }} {% else %}
{% endif %}

{{ contributor.username }}

{% if contributor.is_member %} Team {% endif %}
{{ contributor.contributions|intcomma }}
{% if contributor.github_url %} {% endif %}
{% endfor %}
{% else %}

Top Contributors

Contributor data is being collected. Check back soon to see the top contributors for this organization.

{% endif %} {% if organization.domain_set.all %}

Domains

{% for domain in organization.domain_set.all %}

{{ domain.name }}

{% if domain.url %} {{ domain.url }} {% endif %}
{% endfor %}
{% endif %}

Activity Timeline

Organization Created

{{ organization.created|date:"F j, Y" }}

{% if organization.modified %}

Last Modified

{{ organization.modified|date:"F j, Y" }}

{% endif %}
{% endblock %} {% block after_js %} {% if organization.latitude and organization.longitude %} {% endif %} {% endblock %}