| {% trans "Name" %} |
{{ object.name|placeholder }} |
| {% trans "Source" %} |
{{ object.source|linkify }} |
| {% trans "Target" %} |
{{ object.target|linkify }} |
| {% trans "Protocol" %} |
{{ object.protocol|placeholder }} |
| {% trans "Message type" %} |
{{ object.message_type|placeholder }} |
| {% trans "Port" %} |
{{ object.port|placeholder }} |
| {% trans "Encrypted" %} |
{% if object.encrypted is None %}
{% trans "Unknown" %}
{% elif object.encrypted %}
{% trans "Yes" %}
{% else %}
{% trans "No" %}
{% endif %}
|
| {% trans "Status" %} |
{% badge object.get_status_display bg_color=object.get_status_color %} |
| {% trans "Description" %} |
{{ object.description|placeholder }} |