{% extends 'base.html' %} {% load carconnectivity_filters %} {% block title %}{{ connector.id }} Configuration{% endblock %} {% block header %}{{ connector.id }} Configuration{% endblock %} {% block content %}
| Setting | Value |
|---|---|
| {{ key }} | {% if 'password' in key|lower or 'secret' in key|lower or 'token' in key|lower %} ******** {% elif value == True %} Enabled {% elif value == False %} Disabled {% elif value is None %} Not set {% else %} {{ value }} {% endif %} |