mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-12-02 19:44:02 +08:00
- 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:
@@ -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>
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
using Orchard.Mvc.ViewModels;
|
||||
|
||||
namespace Orchard.Tags.ViewModels {
|
||||
public class TagsCreateViewModel : BaseViewModel {
|
||||
public string TagName { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -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"}) %>
|
||||
|
||||
<% } %>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user