mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +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\TagsAdminEditViewModel.cs" />
|
||||||
<Compile Include="ViewModels\TagsAdminIndexViewModel.cs" />
|
<Compile Include="ViewModels\TagsAdminIndexViewModel.cs" />
|
||||||
<Compile Include="ViewModels\TagsAdminSearchViewModel.cs" />
|
<Compile Include="ViewModels\TagsAdminSearchViewModel.cs" />
|
||||||
<Compile Include="ViewModels\TagsCreateViewModel.cs" />
|
|
||||||
<Compile Include="ViewModels\TagsIndexViewModel.cs" />
|
<Compile Include="ViewModels\TagsIndexViewModel.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<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>
|
<h2 class="separator">Tags</h2>
|
||||||
<%=Html.ValidationSummary() %>
|
<%=Html.ValidationSummary() %>
|
||||||
<% foreach (var tag in Model.Tags) { %>
|
<% 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>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user