- Tags: more cleanup from the front end (aka tag cloud)...

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042116
This commit is contained in:
suhacan
2009-11-25 00:46:35 +00:00
parent 049f38a0af
commit 3d7c2019fd
3 changed files with 1 additions and 9 deletions

View File

@@ -74,7 +74,6 @@
<Compile Include="ViewModels\TagsAdminEditViewModel.cs" />
<Compile Include="ViewModels\TagsAdminIndexViewModel.cs" />
<Compile Include="ViewModels\TagsAdminSearchViewModel.cs" />
<Compile Include="ViewModels\TagsCreateViewModel.cs" />
<Compile Include="ViewModels\TagsIndexViewModel.cs" />
</ItemGroup>
<ItemGroup>

View File

@@ -1,7 +0,0 @@
using Orchard.Mvc.ViewModels;
namespace Orchard.Tags.ViewModels {
public class TagsCreateViewModel : BaseViewModel {
public string TagName { get; set; }
}
}

View File

@@ -6,7 +6,7 @@
<h2 class="separator">Tags</h2>
<%=Html.ValidationSummary() %>
<% foreach (var tag in Model.Tags) { %>
<%=Html.ActionLink(tag.TagName, "TagName", new {tagId = tag.Id}, new {@class="floatRight topSpacer"}) %>
<%=Html.ActionLink(tag.TagName, "Search", new {tagId = tag.Id}, new {@class="floatRight topSpacer"}) %>
&nbsp;
<% } %>
</div>