@using SmartStore.Web.Framework; @model SmartStore.Clickatell.Models.SmsClickatellModel @{ Layout = ""; }
@Html.Raw(@T("Plugins.Sms.Clickatell.AdminInstruction"))
@using (Html.BeginForm()) {
@Html.SmartLabelFor(model => model.Enabled) @Html.EditorFor(model => model.Enabled) @Html.ValidationMessageFor(model => model.Enabled)
@Html.SmartLabelFor(model => model.PhoneNumber) @Html.EditorFor(model => model.PhoneNumber) @Html.ValidationMessageFor(model => model.PhoneNumber)
@Html.SmartLabelFor(model => model.ApiId) @Html.EditorFor(model => model.ApiId) @Html.ValidationMessageFor(model => model.ApiId)
@Html.SmartLabelFor(model => model.Username) @Html.EditorFor(model => model.Username) @Html.ValidationMessageFor(model => model.Username)
@Html.SmartLabelFor(model => model.Password) @Html.EditorFor(model => model.Password) @Html.ValidationMessageFor(model => model.Password)
 
@T("Plugins.Sms.Clickatell.SendTest.Hint")
@Html.SmartLabelFor(model => model.TestMessage) @Html.EditorFor(model => model.TestMessage) @Html.ValidationMessageFor(model => model.TestMessage)
 
if (!String.IsNullOrEmpty(Model.TestSmsResult)) {
@Model.TestSmsResult
} }