mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
13 lines
517 B
Plaintext
13 lines
517 B
Plaintext
@model Orchard.Scripting.CSharp.Settings.ScriptValidationPartSettings
|
|
@using Contrib.Validation.Settings
|
|
|
|
@Display.TokenHint()
|
|
|
|
<fieldset>
|
|
<label for="@Html.FieldIdFor(m => m.Script)">@T("Script")</label>
|
|
<div>
|
|
@Html.TextAreaFor(m => m.Script, new { @class = "textMedium", rows = "5" })
|
|
<span class="hint">@T("The script to run everytime the content item is edited. You can use contentItem, orchardServices, workContext, t() and addModelError().")</span>
|
|
</div>
|
|
</fieldset>
|