2017-09-04 13:34:01 +00:00
|
|
|
{% macro name(domain) %}
|
2023-02-19 15:45:19 +00:00
|
|
|
<a href="{{ url_for('domain.domain', domain_name=domain.name) }}"><strong>{{ domain.name | pretty_domain_name }}</strong></a>
|
2017-09-04 13:34:01 +00:00
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
{% macro dnssec(domain) %}
|
2023-02-19 15:45:19 +00:00
|
|
|
{% if domain.dnssec %}
|
|
|
|
<td>
|
|
|
|
<button class="btn badge btn-success button_dnssec" title="Edit DNSSEC" id="{{ domain.name }}"><i
|
|
|
|
class="fa-solid fa-lock"></i></button>
|
|
|
|
</td>
|
|
|
|
{% else %}
|
|
|
|
<td>
|
|
|
|
<button class="btn badge btn-danger button_dnssec" title="Enable DNSSEC" id="{{ domain.name }}"><i
|
|
|
|
class="fa-solid fa-lock-open"></i></button>
|
|
|
|
</td>
|
|
|
|
{% endif %}
|
2017-09-04 13:34:01 +00:00
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
{% macro type(domain) %}
|
2023-02-19 15:45:19 +00:00
|
|
|
{{ domain.type | format_zone_type }}
|
2017-09-04 13:34:01 +00:00
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
{% macro serial(domain) %}
|
2021-06-04 13:24:49 +00:00
|
|
|
{% if domain.serial == '0' %}{{ domain.notified_serial }}{% else %}{{ domain.serial }}{% endif %}
|
2017-09-04 13:34:01 +00:00
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
{% macro master(domain) %}
|
2023-02-19 15:45:19 +00:00
|
|
|
{% if domain.master == '[]' %}N/A{% else %}{{ domain.master | display_master_name }}{% endif %}
|
2017-09-04 13:34:01 +00:00
|
|
|
{% endmacro %}
|
|
|
|
|
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
|
|
|
{% macro account(domain) %}
|
2018-08-31 04:57:06 +00:00
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] %}
|
2023-02-19 15:45:19 +00:00
|
|
|
{{ domain.account.name if domain.account else 'None' }}
|
2023-02-19 16:31:24 +00:00
|
|
|
{% else %}
|
|
|
|
None
|
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endmacro %}
|
|
|
|
|
2017-09-04 13:34:01 +00:00
|
|
|
{% macro actions(domain) %}
|
2023-02-19 15:45:19 +00:00
|
|
|
<td>
|
|
|
|
<div class="dropdown">
|
|
|
|
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenu" data-toggle="dropdown"
|
|
|
|
aria-haspopup="true" aria-expanded="false">
|
|
|
|
<i class="fa-solid fa-bars"></i>
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu" aria-labelledby="dropdownMenu">
|
|
|
|
<button class="dropdown-item btn-success" type="button"
|
|
|
|
onclick="window.location.href='{{ url_for('domain.domain', domain_name=domain.name) }}'">
|
|
|
|
<i class="fa-solid fa-pencil"></i> Edit Records
|
|
|
|
</button>
|
|
|
|
|
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] %}
|
|
|
|
<button class="dropdown-item btn-danger" type="button"
|
|
|
|
onclick="window.location.href='{{ url_for('domain.setting', domain_name=domain.name) }}'">
|
|
|
|
<i class="fa-solid fa-cog"></i> Zone Settings
|
|
|
|
</button>
|
|
|
|
<button class="dropdown-item btn-success button_template" id="{{ domain.name }}" type="button">
|
|
|
|
<i class="fa-solid fa-clone"></i> Create Template
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] or allow_user_view_history %}
|
|
|
|
<button class="dropdown-item btn-primary" type="button"
|
|
|
|
onclick="window.location.href='{{ url_for('domain.changelog', domain_name=domain.name) }}'">
|
|
|
|
<i class="fa-solid fa-history" aria-hidden="true"></i> Zone Changelog
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] or allow_user_remove_domain %}
|
|
|
|
<div class="dropdown-divider"></div>
|
|
|
|
<button type="button" class="dropdown-item btn-secondary button_delete"
|
|
|
|
onclick="window.location.href='{{ url_for('domain.remove') }}'">
|
|
|
|
<span style="color: red;"><i class="fa-solid fa-trash"></i> Remove Zone</span>
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
2017-09-04 13:34:01 +00:00
|
|
|
{% endmacro %}
|