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

@@ -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);