Files
LazyLibrarian/data/interfaces/default/extras.html
DobyTang 7087af08d7 Issue 4 - merge in Herman Rodgers branch - alot of work in it
So branching to new branch, and will merge my changes from itsmeg ontop

will merge branch back to head once everyone happy its stable.
2013-06-06 22:18:27 +01:00

14 lines
354 B
HTML
Executable File

<%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>