Try your search with a different keyword or use * as a wildcard.
@model AddProductToOrderModel
@if (Model.IsRental)
{
//Actually just a copy (almost) of \Presentation\Nop.Web\Views\Product\_RentalInfo.cshtml
@{
const string startDateControlId = "rental_start_date";
const string endDateControlId = "rental_end_date";
//currenly we support only this format
const string datePickerFormat = "mm/dd/yy";
}
}