{% extends "base.html" %} {% set active_page = "admin_accounts" %} {% if create %} {% set action_label = 'Create' %} {% set form_action = url_for('admin.edit_account') %} {% else %} {% set action_label = 'Edit' %} {% set form_action = url_for('admin.edit_account', account_name=account.name) %} {% endif %} {% block title %}{{ action_label }} Account - {{ SITE_NAME }}{% endblock %} {% block dashboard_stat %}

{{ action_label }} Account

{% endblock %} {% block content %}

Account Editor

{% if error %}

Error!

{{ error }}
{{ error }} {% endif %}
{% if invalid_accountname %} Cannot be blank and must only contain alphanumeric characters{% if SETTING.get('account_name_extra_chars') %}, dots, hyphens or underscores{% endif %}. {% elif duplicate_accountname %} Account name already in use. {% endif %}

Access Control

Users on the right have access to manage records in all domains associated with the account.

Click on users to move between columns.

Domains on the right are associated with the account. Red marked domain names are already associated with other accounts. Moving already associated domains to this account will overwrite the previous associated account.

Hover over the red domain names to show the associated account. Click on domains to move between columns.

Account Editor Help

An account allows grouping of domains belonging to a particular entity, such as a customer or department.

A domain can be assigned to an account upon domain creation or through the domain administration page.

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

Name is an account identifier. It will be lowercase and can contain alphanumeric characters{% if SETTING.get('account_name_extra_chars') %}, dots, hyphens and underscores (no space or other special character is allowed) {% else %} (no extra character is allowed){% endif %}.
Description is a user-friendly name for this account.
Contact person is the name of a contact person at the account.
Mail Address is an e-mail address for the contact person.

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