@model Album @{ ViewBag.Title = "Edit " + (Model.IsProfileAlbum ? "Profile Pictures" : Model.Title); Layout = "~/Views/Shared/_LayoutUserTwoBars.cshtml"; Html.DoSelect("Sidebar", "Album"); var title = Model.IsProfileAlbum ? @Resources.Albums.ProfilePictures : Model.IsWallAlbum ? @Resources.Albums.WallPictures : Model.Title; // to be hijacked // this is a grid view of all pictures within an album // hijacked version shows the first picture in picture-view mode. }
< @Resources.Albums.BackToAlbums
@**@ @Resources.Albums.SaveAlbumName @*Cancel*@ Created @Model.Created.GetDifferenceText()
@(Model.Photos == null ? 0 : Model.Photos.Count) @Resources.Albums.Pictures

@Resources.Albums.ChooseMorePictures


@Resources.Albums.ChoosePicturesFromPC
@*
@if (Model.Owner.Email == ViewBag.Account.Email) {

Select one of your albums to move the photo

} else {

Select one of @Model.Owner.FullName's albums to move the photo

}
    @foreach (var album in ModelsPreview) { if (album.Id != Model.Id) {
  • album name @album.Title
  • } }
*@
@Resources.Albums.DeleteAlbum
@section foot { @* javascript ("~/Scripts/jquery.MultiFile-1.47.js") *@ @* javascript ("~/Scripts/p4p.album.edit.js") *@ }