oont-contents/plugins/mailpoet/views/form/templatesLegacy/blocks/date_years.hbs
2025-02-08 15:10:23 +01:00

13 lines
No EOL
375 B
Handlebars

<% set currentYear = "now"|date("Y") %>
<% set minYear = currentYear - 100 %>
<select id="{{ id }}_years">
<option value=""><%= __('Year') %></option>
<% for year in currentYear..minYear %>
<option
<% if(currentYear == year) %>
{{#if params.is_default_today}}selected="selected"{{/if}}
<% endif %>
><%= year %></option>
<% endfor %>
</select>