This commit is contained in:
Rasmus Eeg
2012-03-08 11:11:24 +01:00
parent 1e0753c9e4
commit 5de5543e31
14 changed files with 1505 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<%inherit file="base.html" />
<%def name="body()">
<div class="table_wrapper">
<h1>Artists You Might Like</h1>
<div class="cloudtag">
<ul id="cloud">
%for artist in cloudlist:
<li><a href="addArtist?artistid=${artist['ArtistID']}" class="tag${artist['Count']}">${artist['ArtistName']}</a></li>
%endfor
</ul>
</div>
</div>
</%def>