@model Orchard.Packaging.ViewModels.PackagingSourcesViewModel

@Html.TitleForPage(T("Gallery Feeds").ToString())

@Html.ActionLink(T("Add Feed").Text, "AddSource", new { }, new { @class = "button primaryAction" })
@foreach ( var item in Model.Sources ) { }
@T("Title") @T("Url")
@item.FeedTitle @Html.Link(item.FeedUrl, item.FeedUrl) @Html.ActionLink(T("Remove").ToString(), "Remove", new { id = item.Id })