mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
16 lines
559 B
Plaintext
16 lines
559 B
Plaintext
@model Orchard.Blogs.ViewModels.BlogArchivesViewModel
|
|
|
|
@using Orchard.Blogs.Models;
|
|
@using Orchard.ContentManagement;
|
|
|
|
<fieldset>
|
|
<div>
|
|
@Html.LabelFor(m => m.BlogId, T("For Blog"))
|
|
<select id="@Html.FieldIdFor(m => m.BlogId)" name="@Html.FieldNameFor(m => m.BlogId)">
|
|
@foreach(BlogPart blog in Model.Blogs) {
|
|
@Html.SelectOption(Model.BlogId, blog.ContentItem.Id, blog.Name)
|
|
}
|
|
</select>
|
|
<span class="hint">@T("Select which blog you want to display the archives for")</span>
|
|
</div>
|
|
</fieldset> |