mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
Fixed display of gallery feeds in drop down filters
- http://orchardqa.codeplex.com/workitem/86 --HG-- branch : dev
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
<select id="sourceId" name="sourceId">
|
<select id="sourceId" name="sourceId">
|
||||||
@Html.SelectOption("", Model.SelectedSource == null, T("Any (show all feeds)").ToString())
|
@Html.SelectOption("", Model.SelectedSource == null, T("Any (show all feeds)").ToString())
|
||||||
@foreach (var source in Model.Sources) {
|
@foreach (var source in Model.Sources) {
|
||||||
Html.SelectOption(source.Id, Model.SelectedSource != null && Model.SelectedSource.Id == source.Id, source.FeedTitle);
|
@Html.SelectOption(source.Id, Model.SelectedSource != null && Model.SelectedSource.Id == source.Id, source.FeedTitle)
|
||||||
}
|
}
|
||||||
</select>
|
</select>
|
||||||
<button type="submit">@T("Apply")</button>
|
<button type="submit">@T("Apply")</button>
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
<select id="sourceId" name="sourceId">
|
<select id="sourceId" name="sourceId">
|
||||||
@Html.SelectOption("", Model.SelectedSource == null, T("Any (show all feeds)").ToString())
|
@Html.SelectOption("", Model.SelectedSource == null, T("Any (show all feeds)").ToString())
|
||||||
@foreach (var source in Model.Sources) {
|
@foreach (var source in Model.Sources) {
|
||||||
Html.SelectOption(source.Id, Model.SelectedSource != null && Model.SelectedSource.Id == source.Id, source.FeedTitle);
|
@Html.SelectOption(source.Id, Model.SelectedSource != null && Model.SelectedSource.Id == source.Id, source.FeedTitle)
|
||||||
}
|
}
|
||||||
</select>
|
</select>
|
||||||
<button type="submit">@T("Apply")</button>
|
<button type="submit">@T("Apply")</button>
|
||||||
|
Reference in New Issue
Block a user