mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
36 lines
1.9 KiB
Plaintext
36 lines
1.9 KiB
Plaintext
@using Orchard.Modules.Extensions;
|
|
@using Orchard.Mvc.Html;
|
|
@using Orchard.Modules.ViewModels;
|
|
@using Orchard.Environment.Extensions.Models;
|
|
|
|
@{
|
|
Orchard.Modules.Models.ModuleEntry module = Model.Module;
|
|
string moduleClasses = module.IsRecentlyInstalled ? "recentlyInstalledModule" : string.Empty;
|
|
}
|
|
|
|
<div class="summary">
|
|
@if (module.Notifications != null && module.Notifications.Count > 0) {
|
|
<div class="notifications">
|
|
@foreach (string notification in module.Notifications) {
|
|
<h5>@Html.Raw(notification)</h5>
|
|
}
|
|
</div>
|
|
}
|
|
<div class="properties">
|
|
<h2@{ if(!string.IsNullOrEmpty(moduleClasses)) {<text> class="@moduleClasses"</text>}}>@module.Descriptor.Name<span> - @T("Version: {0}", !string.IsNullOrEmpty(module.Descriptor.Version) ? module.Descriptor.Version : T("1.0").ToString())</span></h2>
|
|
|
|
@if (!string.IsNullOrEmpty(module.Descriptor.Description)) {
|
|
<p>@module.Descriptor.Description</p>
|
|
}
|
|
|
|
<ul class="pageStatus" style="color:#666; margin:.6em 0 0 0;">
|
|
@{ IEnumerable<FeatureDescriptor> features = module.Descriptor.Features; }
|
|
<li>@T("Features: {0}", MvcHtmlString.Create(string.Join(", ", features.Select(f => Html.Link(string.IsNullOrEmpty(f.Name) ? f.Id : f.Name, string.Format("{0}#{1}", Url.Action("features", new { area = "Orchard.Modules" }), f.Id.AsFeatureId(n => T(n)))).ToString()).OrderBy(s => s).ToArray())))</li>
|
|
<li> | @T("Author: {0}", !string.IsNullOrEmpty(module.Descriptor.Author) ? module.Descriptor.Author : T("Unknown").ToString())</li>
|
|
<li> | @T("Website: ")
|
|
@if (!string.IsNullOrEmpty(module.Descriptor.WebSite)) { <a href="@module.Descriptor.WebSite">@module.Descriptor.WebSite</a> }
|
|
else { @T("Unknown").ToString() }
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div> |