{% extends "base.html" %} {% set active_page = "admin_keys" %} {% if create %} {% set action_label = 'Create' %} {% set form_action = url_for('admin.edit_key') %} {% else %} {% set action_label = 'Edit' %} {% set form_action = url_for('admin.edit_key', key_id=key.id) %} {% endif %} {% if (key is not none and key.role.name != "User") %}{% set hide_opts = True %}{% else %} {% set hide_opts = False %}{% endif %} {% block title %}{{ action_label }} API Key - {{ SITE_NAME }}{% endblock %} {% block dashboard_stat %}

{{ action_label }} API Key

{% endblock %} {% block content %}

API Key Editor

API Key Editor Help

Fill in all the fields in the form to the left.

Role The role of the key.

Description The key description.

Access Control The zones or accounts which the key has access to.

{% endblock %} {% block extrascripts %} {% endblock %} {% block modals %} {% endblock %}