Changed blog admin displays (blog list and details) to use new templating methods.

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4043467
This commit is contained in:
skewed
2009-12-08 09:21:13 +00:00
parent e43201b88d
commit b612ac53e2
15 changed files with 115 additions and 99 deletions

View File

@@ -1,9 +1,10 @@
using System.Collections.Generic;
using Orchard.Blogs.Models;
using Orchard.Models.ViewModels;
using Orchard.Mvc.ViewModels;
namespace Orchard.Blogs.ViewModels {
public class BlogsForAdminViewModel : AdminViewModel {
public IEnumerable<Blog> Blogs { get; set; }
public IEnumerable<ItemDisplayViewModel<Blog>> Blogs { get; set; }
}
}