mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00
Stubbed out some UI (not functional)
--HG-- branch : dev
This commit is contained in:
@@ -1,3 +1,44 @@
|
||||
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<NavigationIndexViewModel>" %>
|
||||
<%@ Import Namespace="Orchard.Core.Navigation.ViewModels"%>
|
||||
<h1><%=Html.TitleForPage(T("Edit Main Menu").ToString())%></h1>
|
||||
<h1><%=Html.TitleForPage(T("Edit Main Menu").ToString())%></h1><%
|
||||
using (Html.BeginFormAntiForgeryPost()) { %>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Text</td>
|
||||
<td>Position</td>
|
||||
<td>Url</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<%-- loop over menu items --%>
|
||||
<tr>
|
||||
<td><input type="text" name="text" /></td>
|
||||
<td><input type="text" name="position" /></td>
|
||||
<td><input type="text" name="url" /></td>
|
||||
<td>Delete Button</td>
|
||||
</tr>
|
||||
<%-- end loop --%>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>Update All Button</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table><%
|
||||
}
|
||||
|
||||
using (Html.BeginFormAntiForgeryPost()) { %>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><input type="text" name="addtext" /></td>
|
||||
<td><input type="text" name="addposition" /></td>
|
||||
<td><input type="text" name="addurl" /></td>
|
||||
<td>Add Button</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table><%
|
||||
} %>
|
Reference in New Issue
Block a user