<' +
'script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/locales/bootstrap-datepicker.ru.min.js" integrity="sha256-iGDUwn2IPSzlnLlVeCe3M4ZIxQxjUoDYdEO6oBZw/Go=" crossorigin="anonymous">');
$(function () {
$('input[type="date"]').each(function() {
var hint = "гггг-мм-дд"; // TODO: Localizable
$(this).attr("placeholder", hint);
$(this).attr("title", hint);
$(this).attr("pattern", "(19|20)\\d{2}-[0-1]\\d-[0-3]\\d");
var options = {
format: "yyyy-mm-dd",
maxViewMode: 3,
language: "ru", // TODO: Localizable
orientation: "bottom auto",
autoclose: true
};
if ($(this).attr('min') !== undefined)
options.startDate = $(this).attr('min');
if ($(this).attr('max') !== undefined)
options.endDate = $(this).attr('max');
$(this).datepicker(options);
});
});
}