{% extends "layouts/app.twig" %} {% block title %}{{ __('Manage TLD') }} {{ tld.tld }}{% endblock %} {% block content %}
{% include 'partials/flash.twig' %}
{{ csrf.field | raw }}

{{ __('General Details') }}

{{ __('TLD Extension') }}
{{ tld_u }}
{{ __('TLD Type') }}
{{ tld_u|length == 3 ? 'ccTLD' : (tld_u|length > 3 ? 'gTLD' : (tld_u|length == 2 ? 'Test TLD' : '')) }}
{{ __('Supported Script') }}
{{ scriptName }}
DNSSEC
{% if secureTld == 1 %} {% if dnssecData.error is defined %} {{ __('Issue') }} {% else %} {{ __('Signed') }} {% endif %} {% else %} {{ __('Not signed') }} {% endif %}
{% if dnssecData is defined and dnssecData.keys is defined and dnssecData.keys|length > 0 %}

{{ __('DNSSEC Details') }} {{ __('Last Updated') }}: {{ dnssecData.timestamp }}

{% for key in dnssecData.keys %} {% endfor %}
{{ __('DS Record') }} {{ __('Status') }} {{ __('Published') }} {{ __('Next Rollover') }} {{ __('Parent') }}
{% if key.ds_record != 'N/A' %}

{{ key.ds_record }}

{% else %} {{ __('Not Available') }} {% endif %}
{% if key.status == 'Active' %} {{ __('Active') }} {% elseif key.status == 'Pending Rollover' %} {{ __('Pending Rollover') }} {% else %} {{ __('Unknown') }} {% endif %} {{ key.published_date }} {{ key.next_rollover }} {% if key.ds_status == 'omnipresent' %} {% elseif key.ds_status == 'rumoured' %} {% else %} {% endif %}
{% endif %}

{{ __('Pricing') }}

{{ __('Command') }} {{ __('Setup Fee') }} 1 {{ __('Year') }} * 2 {{ __('Years') }} * 3 {{ __('Years') }} * 4 {{ __('Years') }} * 5 {{ __('Years') }} * 6 {{ __('Years') }} * 7 {{ __('Years') }} * 8 {{ __('Years') }} * 9 {{ __('Years') }} * 10 {{ __('Years') }} *
{{ __('Create') }}
{{ __('Renew') }}
{{ __('Transfer') }}
{{ __('When you type a price for 1 Year above, it will automatically get multiplied for subsequent years.') }}
{{ __('Enter the price for restoring the TLD.') }}
{{ __('Premium Names') }}
{{ __('Please upload a CSV file containing premium names. Each row should include a name and its corresponding pricing category, separated by a comma. Note: If one or more names in the file already exist in our system, they will be overwritten with the new information provided in the upload.') }}

{{ __('Set Premium Name Price Categories') }}
{% for category in premium_categories %} {% endfor %}
{{ __('Category Name') }} {{ __('Price') }} {{ __('Action') }}
{{ __('Update existing premium categories as needed. Please note: currently, deletion of categories is not available. All updates will modify existing information without removing any categories.') }}
{% include 'partials/footer.twig' %}
{% endblock %}