123456789101112131415161718192021222324252627282930313233343536373839 |
- <div class="box box_artists">
- <div class="head"><strong>Similar Artists</strong></div>
- <ul class="stats nobullet">
- {% if not similar %}
- <li><span style="font-style: italic;">None found</span></li>
- {% else %}
- {% for s in similar %}
- <li>
- <span class="tooltip" title="{{ s.Score/100 }}"><a href="artist.php?id={{ s.ArtistID }}" style="float: left; display: block;">{{ s.Name }}</a></span>
- <div style="float: right; display: block; letter-spacing: -1px;">
- <a href="artist.php?action=vote_similar&artistid={{ s.ArtistID }}&similarid={{
- s.SimilarID }}&way=up" class="tooltip brackets vote_artist_up" title="Vote up this similar artist. Use this when you feel that the two artists are quite similar.">▲</a>
- <a href="artist.php?action=vote_similar&artistid={{ s.ArtistID }}&similarid={{
- s.SimilarID }}&way=down" class="tooltip brackets vote_artist_down" title="Vote down this similar artist. Use this when you feel that the two artists are not all that similar.">▼</a>
- {% if admin %}
- <span class="remove remove_artist"><a href="artist.php?action=delete_similar&artistid={{ s.ArtistID }}&similarid={{
- s.SimilarID }}&auth={{ auth }}" class="tooltip brackets" title="Remove this similar artist">✕</a></span>
- {% endif %}
- </div>
- <br style="clear: both;" />
- </li>
- {% endfor %}
- </ul>
- {% endif %}
- </div>
- <div class="box box_addartists box_addartists_similar">
- <div class="head"><strong>Add similar artist</strong></div>
- <ul class="nobullet">
- <li>
- <form class="add_form" name="similar_artists" action="artist.php" method="post">
- <input type="hidden" name="action" value="add_similar" />
- <input type="hidden" name="auth" value="{{ auth }}" />
- <input type="hidden" name="artistid" value="{{ artist_id }}" />
- <input type="text" autocomplete="off" id="artistsimilar" name="artistname" size="20"{% if autocomplete %} data-gazelle-autocomplete="true"{% endif %} />
- <input type="submit" value="+" />
- </form>
- </li>
- </ul>
- </div>
|