{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
Secret
Name
{{ object.name }}
Driver
{{ object.get_driver_display }}
Options
{% if object.options %}
{{ object.options }}
{% else %} {% endif %}
Tags
{% if object.tags.count %}
{% for tag in object.tags.all %} {{ tag.name }} {% endfor %}
{% else %} No tags {% endif %}
{% endblock %}