Updated TheAdmin theme

- Overrided Menu.cshtml to comply with old css

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-09-17 13:18:19 -07:00
parent 67427b20c2
commit d3bc587e1d
12 changed files with 78 additions and 56 deletions

View File

@@ -1,5 +1,8 @@
@model ModuleAddViewModel
@using Orchard.Modules.ViewModels
@{
Style.Require("ModulesAdmin");
}
@{
<h1>@Html.TitleForPage(T("Install a Module").ToString())</h1>

View File

@@ -5,7 +5,11 @@
@using Orchard.Utility.Extensions
@using Orchard.Modules.Models
<h1>@Html.TitleForPage(T("Manage Features").ToString()).</h1>
@{
Style.Require("ModulesAdmin");
}
<h1>@Html.TitleForPage(T("Manage Features").ToString())</h1>
@if (Model.Features.Count() > 0) {
<ul class="features summary-view">@{
var featureGroups = Model.Features.OrderBy(f => f.Descriptor.Category, new DoghouseComparer("Core")).GroupBy(f => f.Descriptor.Category);

View File

@@ -2,6 +2,11 @@
@using Orchard.Modules.Extensions
@using Orchard.Mvc.Html
@using Orchard.Modules.ViewModels
@{
Style.Require("ModulesAdmin");
}
<h1>@Html.TitleForPage(T("Installed Modules").ToString())</h1>
<div class="manage">@Html.ActionLink(T("Install a module").ToString(), "Add", null, new { @class = "button primaryAction" })</div>
@if (Model.Modules.Count() > 0) {

View File

@@ -24,7 +24,7 @@
<col id="Edit" />
</colgroup>
<thead>
<th scope="col">&nbsp;&darr;<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%></th>
<th scope="col">&nbsp;&darr;@/*todo: (heskew) something more appropriate for "this applies to the bulk actions*/</th>
<th scope="col">@T("Name")</th>
<th scope="col"></th>
</thead>