{% extends "resource-new.html" %} {% block title %} New {{vcs}} repository - {{project.name}} {% endblock %} {% block content %}

Create a new {{vcs}} repository

{{csrf_token()}}
{{ valid.summary("name") }}
{{valid.summary("description")}}
{% if any(repos) or search %}

Or add an existing {{vcs}} repository

{# TODO: Pagination #}
{{csrf_token()}} {% if search_error %}
{{ search_error }}
{% endif %}
{{csrf_token()}} {% for repo in repos %}

{% if repo["id"] in existing %} {% else %} {% endif %} {{ repo["name"] }}

{% endfor %}
{% endif %} {% endblock %}