{% extends "base.html" %} {% block content %}
{% set breadcrumbs = [ {"name": "Home", "href": "/"}, {"name": team.name} ] %} {% include "partials/breadcrumbs.html" %}

{{ team.name }}

{{ team.slug }}
{% if page.results | length == 0 %}

No repositories yet.

{% else %}
{% for repo in page.results %} {% endfor %}
Repository Visibility Created
{{ repo.name }}
{{ repo.slug }}
{% if repo.description %}
{{ repo.description }}
{% endif %}
{% if repo.visibility == "public" %} Public {% else %} Private {% endif %} {{ repo.created_at | humantime }}
{% endif %}
{% with page=page, query=query, per_page_id="team-repo-per-page", per_page_form="team-repo-filters" %} {% include "partials/paging_footer.html" %} {% endwith %}
{% endblock %} {% block scripts %} {% endblock %}