%inherit file="base.html" />
<%!
import headphones
from headphones import db, helpers
myDB = db.DBConnection()
%>
<%def name="headerIncludes()">
« Back to Unmatched Albums
%def>
<%def name="body()">
Local Artist |
Local Album |
Previous Action |
<% count_albums=0 %>
%for album in manualalbums:
<%
old_artist_clean = album['ArtistName'].replace('&','%26').replace('+', '%2B').replace("'","%27")
old_album_clean = album['AlbumTitle'].replace('&','%26').replace('+', '%2B').replace("'","%27")
%>
${album['ArtistName']}
Are you sure you want to reset Local Artist: ${album['ArtistName']} to unmatched? |
%if album['AlbumStatus'] == "Ignored":
%elif album['AlbumStatus'] == "Matched":
%endif
|
|
${album['AlbumTitle']}
Are you sure you want to reset Local Album: ${album['AlbumTitle']} to unmatched? |
%if album['AlbumStatus'] == "Ignored":
%elif album['AlbumStatus'] == "Matched":
%endif
|
|
${album['AlbumStatus']}
|
<% count_albums+=1 %>
%endfor
%def>
<%def name="headIncludes()">
%def>
<%def name="javascriptIncludes()">
%def>