nomilo/templates/pages/new_record.html

17 lines
578 B
HTML
Raw Permalink Normal View History

2025-03-31 00:16:10 +00:00
{% extends "bases/app.html" %}
2025-04-30 08:38:03 +00:00
{% import "macros/new_rrset.html" as new_rrset %}
2025-03-31 00:16:10 +00:00
{% block title %}New record - {{ current_zone }} - {% endblock title %}
{% block main %}
<h1>Create a new record in zone {{ current_zone }}</h1>
2025-05-13 18:23:26 +00:00
{{ errors | json_encode(pretty=true) }}
2025-03-31 00:16:10 +00:00
{% if not new_record_name or (new_record_name and domain_error) %}
2025-05-11 11:40:35 +00:00
{% include "pages/new_record/choose_name.html" %}
2025-03-31 00:16:10 +00:00
{% elif not config and not rtype %}
2025-05-11 11:40:35 +00:00
{% include "pages/new_record/choose_record.html" %}
2025-03-31 00:16:10 +00:00
{% else %}
2025-05-11 11:40:35 +00:00
{% include "pages/new_record/configure_record.html" %}
2025-03-31 00:16:10 +00:00
{% endif %}
{% endblock %}