mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00

- Broke manage and metadata template parts into their own respective display templates for both content types - Simplified the display template for each to contain only the page title and zones (primary w/ manage and metadata partitions and the remainder) - Removed themed templates that were made redundant with this cleanup --HG-- branch : dev
6 lines
353 B
Plaintext
6 lines
353 B
Plaintext
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<Orchard.Pages.Models.Page>" %>
|
|
<%@ Import Namespace="Orchard.Mvc.ViewModels"%>
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
|
<div class="manage">
|
|
<a href="<%=Url.Action("Edit", "Admin", new {id = Model.Id, area = "Orchard.Pages"}) %>" class="edit"><%=_Encoded("Edit")%></a>
|
|
</div> |