Persist new artists through restart (new artists now stored in db table 'newartists'), delete artist from newartists when added. Modified templates to use db instead of variable

This commit is contained in:
rembo10
2012-07-13 15:31:06 +05:30
parent 6ee3a1aa9c
commit 5fc03e782a
8 changed files with 17 additions and 11 deletions

View File

@@ -20,7 +20,7 @@
</tr>
</thead>
<tbody>
%for artist in headphones.NEW_ARTISTS:
%for artist in newartists:
<tr class="gradeZ">
<td id="select"><input type="checkbox" name="${artist}" class="checkbox" /></td>
<td id="name">${artist}</a></td>
@@ -49,4 +49,4 @@
});
});
</script>
</%def>
</%def>