@model IEnumerable @{ ViewData["Title"] = "Manage Artists"; }
← Dashboard CATALOG MANAGEMENT

Artists

Manage artists displayed in the store catalog.

@if (TempData["Success"] != null) {
✓ @TempData["Success"]
}
@foreach (var artist in Model) { }
Artist Description
@if (!string.IsNullOrWhiteSpace( artist.ArtistPhoto)) { @artist.ArtistName } else {
♪
} @artist.ArtistName
@if (string.IsNullOrWhiteSpace( artist.ArtistDescription)) { No description } else { @artist.ArtistDescription } Edit View