{% 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>

{% 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 %}