<%inherit file="base.html" /> <%def name="headerIncludes()">
 
« Back to manage overview <%def name="body()">

Manage Artists

selected artists
%for artist in artists: <% if artist['Status'] == 'Paused': grade = 'X' elif artist['Status'] == 'Loading': grade = 'C' else: grade = 'Z' if artist['ReleaseDate'] and artist['LatestAlbum']: releasedate = artist['ReleaseDate'] albumdisplay = '%s (%s)' % (artist['LatestAlbum'], artist['ReleaseDate']) elif artist['LatestAlbum']: releasedate = '' albumdisplay = '%s' % artist['LatestAlbum'] else: releasedate = '' albumdisplay = 'None' if not artist['LastUpdated']: lastupdated = "Never" else: lastupdated = artist['LastUpdated'] %> %endfor
Artist Name Status Latest Album Last Updated
${artist['ArtistName']} ${artist['Status']} ${albumdisplay} ${lastupdated}
<%def name="headIncludes()"> <%def name="javascriptIncludes()">