{% extends "repo_master.html" %} {% from "_formhelper.html" import render_field_in_row %} {% block title %}{{ select.capitalize() }} - {{ repo.name }}{% endblock %} {%block tag %}home{% endblock %} {% block header %} {% endblock %} {% block repo %}

Settings

Update project


{{ form.csrf_token }}

Default Branch

{{ branches_form.csrf_token }} {{ branches_form.branches }}

Private web-hook key

Each message sent to the web-hook are signed via hmac and SHA1 using this private key.

This key is private to your project, make sure to store in a safe place and do not share it.

        {{ repo.hook_token }}
    
{{ form.csrf_token }}

API key

API keys are tokens used to authenticate you on pagure. They can also be used to grant access to 3rd party application to behave on this project on your name.

These keys are valid for 60 days.

These keys are private to your project, make sure to store in a safe place and do not share it.

{% if repo.tokens %} {% for token in repo.tokens %} {% if token.user.username == g.fas_user.username %} {% endif %} {% endfor %}
{{ token.id }} {% if token.expired %} Expired since {{ token.expiration.date() }} {% else %} Valid until: {{ token.expiration.date() }} {% endif %} ACLs
{{ form.csrf_token }}
{% endif %}

Project's options

{% for key in repo.settings | sort %} {% if not config.get('ENABLE_TICKETS', True) and key in ['issue_tracker'] %} {% elif not config.get('DOC_APP_URL') and key in ['project_documentation'] %} {% else %} {% endif %} {% endfor %}
{% if repo.settings[key] in [True, False, 'y'] %} {% else %} {% endif %}

{{ form.csrf_token }}

Re-generate git repos

{{ form.csrf_token }}
{{ form.csrf_token }}

Users and Groups

Here below is the list of user having commit rights to this repo.

[add] [add group]

{% if plugins %}

Hooks

{% for plugin in plugins %}

{{ plugin }}

{% endfor %}
{% endif %} {% if config.get('ENABLE_TICKETS', True) %}

Tags

Here below is the list of tags associated with one or more issue of the project.

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