{% macro input(title, unlimited, value, icon, type, min, max, class) %} {% set attr = type == 'text' ? ' minlength="' ~ min ~ '"' ~ (max ? ' maxlength="' ~ max ~ '"' : '') : ' min="' ~ min ~ '"' ~ (max ? ' max="' ~ max ~ '"' : '') ~ ' step="1"' %}

{{ lang('ACP_' ~ title|upper ~ '_DESC') }}{% if unlimited %}
{{ lang('ACP_DICE_ZERO_UNLIMITED') }}{% endif %}
{% spaceless %}
{% endspaceless %}
{% endmacro %}