date.hbs
4 years ago
date_days.hbs
4 years ago
date_months.hbs
4 years ago
date_years.hbs
4 years ago
index.php
3 years ago
date_years.hbs
13 lines
| 1 | <% set currentYear = "now"|date("Y") %> |
| 2 | <% set minYear = currentYear - 100 %> |
| 3 | |
| 4 | <select id="{{ id }}_years"> |
| 5 | <option value=""><%= __('Year') %></option> |
| 6 | <% for year in currentYear..minYear %> |
| 7 | <option |
| 8 | <% if(currentYear == year) %> |
| 9 | {{#if params.is_default_today}}selected="selected"{{/if}} |
| 10 | <% endif %> |
| 11 | ><%= year %></option> |
| 12 | <% endfor %> |
| 13 | </select> |