{% extends "master.html" %} {% from "_formhelper.html" import render_bootstrap_field %} {% block title %}New project{% endblock %} {% set tag = "new_project" %} {% block content %}
Create new Project
{{ render_bootstrap_field(form.name, field_description="the name of your project") }} {{ render_bootstrap_field(form.description, field_description="short description of the project") }} {{ render_bootstrap_field(form.namespace, field_description="namespace of the project") }} {{ render_bootstrap_field(form.default_branch, field_description="Name of the default branch in the git repo") }} {{ render_bootstrap_field(form.url, field_description="url of the project's website") }} {{ render_bootstrap_field(form.avatar_email, field_description="libravatar email address avatar email") }} {% if config.get('PRIVATE_PROJECTS', False) %} {{ render_bootstrap_field(form.private, field_description="To mark the repo private") }} {% endif %} {% if not config.get('DISABLE_MIRROR_IN', False) %} {{ render_bootstrap_field(form.mirrored_from, field_description="Mirror this project from another git server") }} {% endif %} {{ render_bootstrap_field(form.create_readme, field_description="Create a README file automatically") }} {% if form.repospanner_region %} {{ render_bootstrap_field(form.repospanner_region, field_description="repoSpanner region to create the project in") }} {% endif %} {{ form.csrf_token }}

Note that Pagure only supports mirroring from a public server.

{% endblock %} {% if config.get('PRIVATE_PROJECTS', False) %} {% block jscripts %} {{ super() }} {% endblock %} {% endif %}