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

Credential Manager {% if "DB_KEY"|get_config_setting == True %} {% 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 }}
{% 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 %} {% include "dojo/filter_js_snippet.html" %} {% endblock %}