{% extends "base.html" %} {% block title %}Organizations - Guts{% endblock %} {% block content %}

Organizations

Browse organizations on the Guts network

{% for org in orgs %}

{{ org.display_name }}

@{{ org.name }}
{% if let Some(desc) = org.description %}

{{ desc }}

{% else %}

No description

{% endif %}
{{ org.member_count }} members {{ org.repo_count }} repos
{% endfor %} {% if orgs.is_empty() %}

No organizations yet

Create one using the API: POST /api/orgs

{% endif %}
{% endblock %}