mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 20:09:09 +08:00
Added hints to show technical names in list of content types and content field definition edit (#8640)
* Added hint in EditField view * Added hint to EditTypeViewModel.cshtml to show technical name in list of content types * fixed typo * Clarified hint displaying technical name. Co-authored-by: Andrea Piovanelli <andrea.piovanelli@laser-group.com>
This commit is contained in:
parent
f76f7bd428
commit
2a1b0b3af3
@ -12,13 +12,14 @@
|
||||
|
||||
@using (Html.BeginFormAntiForgeryPost()) {
|
||||
@Html.ValidationSummary()
|
||||
<fieldset>
|
||||
<label for="DisplayName" class="required">@T("Display Name")</label>
|
||||
@Html.TextBoxFor(m => m.DisplayName, new {@class = "text medium", autofocus = "autofocus"})
|
||||
<span class="hint">@T("Name of the field as it will be displayed in screens.")</span>
|
||||
|
||||
@Html.HiddenFor(m => m.Name)
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<label for="DisplayName" class="required">@T("Display Name")</label>
|
||||
@Html.TextBoxFor(m => m.DisplayName, new { @class = "text medium", autofocus = "autofocus" })
|
||||
<span class="hint">@T("Name of the field as it will be displayed in screens.")</span>
|
||||
<span class="hint">@T("Content Field Id: {0}", Model.Name)</span>
|
||||
|
||||
@Html.HiddenFor(m => m.Name)
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<button class="primaryAction" type="submit" name="submit.Save" value="Save">@T("Save")</button>
|
||||
@if (!String.IsNullOrWhiteSpace(returnUrl) && Request.IsLocalUrl(returnUrl)) {
|
||||
|
@ -11,6 +11,7 @@
|
||||
<div class="properties">
|
||||
<h3>@Model.DisplayName</h3>
|
||||
@if (!string.IsNullOrWhiteSpace(stereotype)) { <text><span class="stereotype" title="Stereotype">- @stereotype</span></text> }
|
||||
@if (!Model.DisplayName.Equals(Model.Name, StringComparison.OrdinalIgnoreCase)) { <text><span class="hint" title="@T("Technical name")">@T("Content Type name: {0}", Model.Name)</span></text> }
|
||||
|
||||
@if (settings.Creatable) {
|
||||
<p class="pageStatus">@Html.ActionLink(T("Create New {0}", Html.Raw(Model.DisplayName)).Text, "Create", new {area = "Contents", id = Model.Name})</p>
|
||||
|
Loading…
Reference in New Issue
Block a user