some more commits, extras.html, config.html (bad layout), otherstuff, changed log levels

This commit is contained in:
Remy
2011-08-07 02:51:12 -07:00
parent d59f714a97
commit 1c736bf228
9 changed files with 101 additions and 80 deletions
+41 -3
View File
@@ -2,9 +2,28 @@
<%def name="body()">
<div class="table_wrapper">
<h1>Upcoming Albums</h1>
%for album in wanted:
%endfor
<table class="display" id="upcoming_table">
<thead>
<tr>
<th id="albumart"></th>
<th id="albumname">Album Name</th>
<th id="reldate">Release Date</th>
<th id="type">Release Type</th>
<th id="status">Status</th>
</tr>
</thead>
<tbody>
%for album in upcoming:
<tr class="gradeZ">
<td id="albumart"><img src="http://ec1.images-amazon.com/images/P/${album['AlbumASIN']}.01.MZZZZZZZ.jpg" height="50" width="50"></td>
<td id="albumname"><a href="albumPage?AlbumID=${album['AlbumID']}">${album['AlbumTitle']}</a></td>
<td id="reldate">${album['ReleaseDate']}</td>
<td id="type"></td>
<td id="status"></td>
</tr>
%endfor
</tbody>
</table>
</div>
<div class="table_wrapper">
@@ -12,3 +31,22 @@
</div>
</%def>
<%def name="headIncludes()">
<link rel="stylesheet" href="css/data_table.css">
</%def>
<%def name="javascriptIncludes()">
<script src="js/libs/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function()
{
$('#track_table').dataTable(
{
"bFilter": false,
"bInfo": false,
"bPaginate": false
});
});
</script>
</%def>