{% extends "base.html" %} {% load custom_tags_and_filters %} {% block title %}Tool credentials{% endblock %} {% block content %}

Tool credentials

{% if user.is_facility_manager or user.is_superuser %} {% url "export_tool_credentials" as export_tool_credentials_url %} {% button type="export" value="Export" url=export_tool_credentials_url target="_blank" %} {% endif %} {% admin_add_url 'NEMO' 'toolcredentials' request.path as add_tool_credentials_url %} {% if add_tool_credentials_url %} {% button type="add" value="Add new credentials" url=add_tool_credentials_url %} {% endif %}
{% if tool_credentials %} {% regroup tool_credentials by tool.category as tool_credentials_by_category %} {% for category in tool_credentials_by_category %} {% if perms.NEMO.change_toolcredentials %}{% endif %} {% for tool_credential in category.list %} {% if perms.NEMO.change_toolcredentials %} {% endif %} {% endfor %} {% endfor %}
{{ category.grouper }}
Tool Username Password Comments
{{ tool_credential.tool }} {{ tool_credential.username|default_if_none:"" }} {{ tool_credential.password|default_if_none:"" }} {{ tool_credential.comments|default_if_none:"" }} {% admin_edit_url tool_credential request.path as change_tool_credentials_url %} {% if change_tool_credentials_url %} {% button size="small" type="edit" value="Edit" url=change_tool_credentials_url %} {% endif %}
{% else %}
There are no tool credentials.
{% endif %} {% endblock %}