{% extends "base.html" %} {% load navigation_tags %} {% load get_config_setting %} {% load authorization_tags %} {% block content %} {{ block.super }}

Credential Manager {% if "DB_KEY"|get_config_setting == True and "dojo.add_cred_user"|has_configuration_permission:request %} {% endif %}

{% if confs %}
{% include "dojo/paging_snippet.html" with page=confs page_size=True %}
{% for conf in confs %} {% endfor %}
Name Username Role Environment Valid Details
{{ conf.name }} {{ conf.username }} {{ conf.role }} {{ conf.environment }} {{ conf.is_valid }}
View {% if "dojo.change_cred_user"|has_configuration_permission:request %} Edit {% endif %} {% if "dojo.delete_cred_user"|has_configuration_permission:request %} Delete {% endif %}
{% include "dojo/paging_snippet.html" with page=confs page_size=True %}
{% else %}

No credentials configured.

{% endif %} {% if "DB_KEY"|get_config_setting == False %}

Please configure a randomly generated key called DB_KEY and add to settings.py in dojo/settings/.


{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}