@model ActivityLogSearchModel
@using Telerik.Web.Mvc;
@{
ViewBag.Title = T("Admin.Configuration.ActivityLog.ActivityLog").Text;
}
@using (Html.BeginForm())
{
|
@Html.SmartLabelFor(model => model.CreatedOnFrom)
|
@Html.EditorFor(model => model.CreatedOnFrom)
|
|
@Html.SmartLabelFor(model => model.CreatedOnTo)
|
@Html.EditorFor(model => model.CreatedOnTo)
|
|
@Html.SmartLabelFor(model => model.ActivityLogTypeId)
|
@Html.DropDownListFor(ModelBase => ModelBase.ActivityLogTypeId, Model.ActivityLogType, T("Common.Unspecified"))
|
|
@Html.SmartLabelFor(model => model.CustomerEmail)
|
@Html.EditorFor(model => model.CustomerEmail)
|
|
@Html.SmartLabelFor(model => model.CustomerSystemAccount)
|
@Html.EditorFor(model => Model.CustomerSystemAccount)
|
|
|
|
}