Skip to content

Commit

Permalink
Added title attriubute in anchor tag stating View on AcousticBrainz
Browse files Browse the repository at this point in the history
  • Loading branch information
PriyankBhatt committed Mar 12, 2015
1 parent 4b8c557 commit 465b569
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion critiquebrainz/frontend/templates/release_group.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ <h4>{{ _('Tracklist') }}</h4>
{% for track in medium['track-list'] %}
<tr>
<td>{{ track.number }}</td>
<td><a href="http://acousticbrainz.org/{{track.recording.id}}">{{ track.recording.title }}</a></td>
<td>
<a href="http://acousticbrainz.org/{{ track.recording.id }}" title="View on AcousicBrainz">

This comment has been minimized.

Copy link
@mwiencek

mwiencek Mar 12, 2015

Member

s/AcousicBrainz/AcousticBrainz/ :)

This comment has been minimized.

Copy link
@gentlecat

gentlecat Mar 12, 2015

Contributor

Doh. I'm a great code reviewer. 😖 That was my typo originally https://bitbucket.org/metabrainz/critiquebrainz/pull-request/256/cb-138-added-links-of-acousticbrainz-in/diff#comment-5617377.

Thanks for taking a look. :)

{{ track.recording.title }}
</a>
</td>
<td>
{% if track.recording.length %}
{{ track.recording.length | track_length }}
Expand Down

0 comments on commit 465b569

Please sign in to comment.