mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
92 lines
4.1 KiB
Plaintext
92 lines
4.1 KiB
Plaintext
@model Orchard.Media.ViewModels.MediaFolderEditViewModel
|
|
@using Orchard.Media.Helpers;
|
|
@using Orchard.Media.Models;
|
|
@{ Style.Require("MediaAdmin"); }
|
|
|
|
<h1>@Html.TitleForPage(T("Manage Folder").ToString())</h1>
|
|
|
|
<div class="breadCrumbs">
|
|
<p>@Html.ActionLink(T("Media Folders").ToString(), "Index") >
|
|
@foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {
|
|
@Html.ActionLink(navigation.FolderName, "Edit",
|
|
new {name = navigation.FolderName, mediaPath = navigation.FolderPath})
|
|
|
|
}
|
|
@T("Manage Folder")</p>
|
|
</div>
|
|
<div class="folderProperties">
|
|
<p>@Html.ActionLink(T("Folder Properties").ToString(), "EditProperties", new { folderName = Model.FolderName, mediaPath = Model.MediaPath })</p>
|
|
</div>
|
|
<div class="clearBoth"></div>
|
|
|
|
|
|
@using(Html.BeginFormAntiForgeryPost()) {
|
|
<fieldset class="bulk-actions">
|
|
<label for="publishActions">@T("Actions:")</label>
|
|
<select id="Select1" name="publishActions">
|
|
<option value="1">@T("Remove")</option>
|
|
</select>
|
|
<input class="button" type="submit" value="@T("Apply")" />
|
|
</fieldset>
|
|
<div class="manage">
|
|
@Html.ActionLink(T("Add media").ToString(), "Add", new { folderName = Model.FolderName, mediaPath = Model.MediaPath }, new { @class = "button primaryAction" })
|
|
@Html.ActionLink(T("Add a folder").ToString(), "Create", new { Model.MediaPath }, new { @class = "button" })
|
|
</div>
|
|
<fieldset>
|
|
<table class="items" summary="@T("This is a table of the pages currently available for use in your application.")">
|
|
<colgroup>
|
|
<col id="Col1" />
|
|
<col id="Col2" />
|
|
<col id="Col3" />
|
|
<col id="Col4" />
|
|
<col id="Col5" />
|
|
<col id="Col6" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col"> ↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%></th>
|
|
<th scope="col">@T("Name")</th>
|
|
<th scope="col">@T("Author")</th>
|
|
<th scope="col">@T("Last Updated")</th>
|
|
<th scope="col">@T("Type")</th>
|
|
<th scope="col">@T("Size")</th>
|
|
</tr>
|
|
</thead>
|
|
@foreach (var mediaFile in Model.MediaFiles) {
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" value="true" name="@T("Checkbox.File.{0}", mediaFile.Name)"/>
|
|
<input type="hidden" value="@T(Model.MediaPath)" name="@T(mediaFile.Name)" />
|
|
</td>
|
|
<td>
|
|
@Html.ActionLink(mediaFile.Name, "EditMedia", new { name = mediaFile.Name,
|
|
lastUpdated = mediaFile.LastUpdated,
|
|
size = mediaFile.Size,
|
|
folderName = mediaFile.FolderName,
|
|
mediaPath = Model.MediaPath })
|
|
</td>
|
|
<td>@T("Orchard User")</td>
|
|
<td>@mediaFile.LastUpdated</td>
|
|
<td>@mediaFile.Type</td>
|
|
<td>@mediaFile.Size</td>
|
|
</tr>
|
|
}
|
|
@foreach (var mediaFolder in Model.MediaFolders) {
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" value="true" name="@T("Checkbox.Folder.{0}", mediaFolder.Name)"/>
|
|
<input type="hidden" value="@mediaFolder.MediaPath" name="@mediaFolder.Name" />
|
|
</td>
|
|
<td>
|
|
<img src="<%=ResolveUrl("~/Modules/Orchard.Media/Content/Admin/images/folder.gif")%>" height="16" width="16" class="mediaTypeIcon" alt="@T("Folder")" />
|
|
@Html.ActionLink(mediaFolder.Name, "Edit", new { name = mediaFolder.Name, mediaPath = mediaFolder.MediaPath})
|
|
</td>
|
|
<td>@T("Orchard User")</td>
|
|
<td>@mediaFolder.LastUpdated</td>
|
|
<td>@T("Folder")</td>
|
|
<td>@mediaFolder.Size</td>
|
|
</tr>
|
|
}
|
|
</table>
|
|
</fieldset>
|
|
} |