{% extends "base.html" %} {% load compress static hc_extras %} {% block title %}Project Settings - {{ project }}{% endblock %} {% block content %}
{% for message in messages %}

{{ message }}

{% endfor %}

Project Name

{{ project }} Change Project Name
{% if project_name_updated %} {% endif %}

API Access

{% if project.api_key %} {% if show_api_keys %}

API key:
{{ project.api_key }}

{% if project.api_key_readonly %}

API key (read-only):
{{ project.api_key_readonly }}

Prometheus metrics endpoint: here

{% endif %} {% else %}
API access is enabled. {% csrf_token %}
{% endif %} {% else %} API access is disabled.
{% csrf_token %}
{% endif %}
{% if api_keys_created %} {% endif %} {% if api_keys_revoked %} {% endif %}

Team Access

{% if project.team.exists or invite_suggestions %} {% for user in project.team %} {% endfor %} {% if is_owner and invite_suggestions %} {% for user in project.invite_suggestions %} {% endfor %} {% endif %}
Email Role
{{ project.owner.email }} Owner
{{ user.email }} Member {% if is_owner %} Remove {% endif %}
Add Users from Other Teams
{{ user.email }} Add to Team
{% else %}

Invite team members to your project. Share access to your checks and configured integrations without having to share login details.

{% endif %}
{% if is_owner %} {% if project.can_invite_new_users %} Invite a Team Member {% else %}
Team size limit reached. To invite new members by email, please upgrade your account!
{% endif %} {% endif %}
{% if team_member_invited %} {% endif %} {% if team_member_removed %} {% endif %}
{% if is_owner %}
{% csrf_token %}

Remove Project

Remove Project This will permanently remove project {{ project }}.
{% endif %}
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}