{% extends "layouts/app.twig" %} {% block title %}{{ __('Manage Allocation Tokens') }}{% endblock %} {% block content %}
{% include 'partials/flash.twig' %}
{{ csrf.field | raw }}
{% if tokens is not empty %} {% for token in tokens %} {% endfor %} {% else %} {% endif %}
{{ __('Token') }} {{ __('Domain') }} {{ __('Type') }} {{ __('Status') }} {{ __('Registrars') }} {{ __('TLDs') }} {{ __('Actions') }} {{ __('Premiums') }} {{ __('Discounts') }}
{{ token.token }} {{ token.domain_name }} {{ token.tokenType is empty ? 'Default' : token.tokenType }} {{ token.tokenStatus is empty ? 'OK' : token.tokenStatus }} {{ token.registrars is empty ? 'All' : token.registrars }} {{ token.tlds is empty ? 'All' : token.tlds }} {{ token.eppActions is empty ? 'All' : token.eppActions }} {{ token.reducePremium is empty ? 'N/A' : token.reducePremium }} {{ token.reduceYears is empty ? 'N/A' : token.reduceYears }} Edit
No tokens found.
{% include 'partials/footer.twig' %}
{% endblock %}