mirror of
https://forge.familier.net.eu.org/dns-witch/nomilo.git
synced 2025-05-14 22:22:35 +02:00
16 lines
578 B
HTML
16 lines
578 B
HTML
{% extends "bases/app.html" %}
|
|
{% import "macros/new_rrset.html" as new_rrset %}
|
|
{% block title %}New record - {{ current_zone }} - {% endblock title %}
|
|
|
|
{% block main %}
|
|
<h1>Create a new record in zone {{ current_zone }}</h1>
|
|
{{ errors | json_encode(pretty=true) }}
|
|
{% if not new_record_name or (new_record_name and domain_error) %}
|
|
{% include "pages/new_record/choose_name.html" %}
|
|
{% elif not config and not rtype %}
|
|
{% include "pages/new_record/choose_record.html" %}
|
|
{% else %}
|
|
{% include "pages/new_record/configure_record.html" %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|