{% 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 %} {{ __('Active') }} {% else %} {{ __('Manual') }} {% endif %}
Enable DNSSEC
DNSSEC Mode
{% if dnssecData is defined and dnssecData.keys is defined %}
{{ __('DNSSEC Details') }} {{ __('Last Updated:') }} {{ dnssecData.timestamp }}
{% for key in dnssecData.keys %} {% endfor %}
{{ __('Key File') }} {{ __('DS Record') }} {{ __('Timestamp') }}
{{ key.keyFile }}

{{ key.dsRecord }}

{{ key.timestamp }}
{% elseif dnssecData.error is defined %}
{{ __('DNSSEC Details') }}
{% else %}
{{ __('DNSSEC Details') }}
{% 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.') }}
{{ __('Manage Promotions') }}
{% for promo in promotions %} {% else %} {% endfor %}
{{ __('Promotion Name') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Discount') }} (%) {{ __('Discount Amount') }} {{ __('Description') }}
{{ promo.promo_name }} {{ promo.start_date }} {{ promo.end_date }} {{ promo.discount_percentage ? promo.discount_percentage ~ '%' : 'N/A' }} {{ promo.discount_amount ? promo.discount_amount : 'N/A' }} {{ promo.description ? promo.description : 'N/A' }}
{{ __('No promotions found.') }}
{{ __('Create New Promotion') }}
{{ csrf.field | raw }}
{{ __('Please Note:') }} {{ __('All times displayed are in') }} Coordinated Universal Time (UTC)
{{ __('Manage Launch Phases') }}
{% for phase in launch_phases %} {% else %} {% endfor %}
{{ __('Phase Type') }} {{ __('Phase Name') }} {{ __('Phase Category') }} {{ __('Phase Description') }} {{ __('Start Date') }} {{ __('End Date') }}
{{ phase.phase_type|capitalize }} {{ phase.phase_name|default('N/A') }} {{ phase.phase_category }} {{ phase.phase_description }} {{ phase.start_date }} {{ phase.end_date }}
{{ __('No launch phases found.') }}
{{ __('Create New Phase') }}
{{ csrf.field | raw }}
The "Phase Name" field is required only if the "Type" is set to "Custom".
{{ __('Phase Category') }}
{{ __('Please Note:') }} {{ __('All times displayed are in') }} Coordinated Universal Time (UTC)
{% include 'partials/footer.twig' %}
{% endblock %}