{% extends "layouts/base.html" %} {% block title %} Profile {% endblock %} {% block body_class %} sidebar-mini {% endblock body_class %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}

Repository {{ repo_name }}

{% for secret in repo_config.secrets|sort(attribute='name') %} {% endfor %}
Name Secret Resolved
{{ secret.name }} {{ secret.value }} {% if not secret|has_dummy_secret %} {% else %} {% endif %}
{% for variable in repo_config.variables|sort(attribute='name') %} {% endfor %}
Name Value
{{ variable.name }} {{ variable.value }}
{% for webhook in repo_config.webhooks|sort(attribute='url') %} {% endfor %}
URL Active Events Uses SSL Resolved Secret
{{ webhook.url }} {% if webhook.active == true %} {% else %} {% endif %}
    {% for event in webhook.events %}
  • {{ event }}
  • {% endfor %}
{% if webhook.insecure_ssl == "0" %} {% else %} {% endif %} {% if webhook.secret %} {% if not webhook|has_dummy_secret %} {% else %} {% endif %} {% else %} {% endif %}
{% for env in repo_config.environments %} {% set env_id = 'env-' ~ loop.index %}
{% endfor %}
{% for bpr in repo_config.branch_protection_rules %} {% set id = 'rule-' ~ loop.index %}
{% endfor %}
{% for ruleset in repo_config.rulesets %} {% set ruleset_id = 'ruleset-' ~ loop.index %}
{% endfor %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}