Skip to content

Commit

Permalink
Fixes to templates
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Jan 15, 2017
1 parent 4d2413f commit 0f7c8a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion in/artist.tt
Expand Up @@ -8,7 +8,7 @@
<tr>
<th>Song</th><th>Album</th><th>Cat</th>
</tr>
[% FOREACH track IN tracks.sort('title') -%]
[% FOREACH track IN tracks -%]
<tr>
<td><a href="/[% track.song.filename %]">[% track.song.title %]</a></td>
<td><a href="/[% track.album.filename %]">[% track.album.title %]</a></td>
Expand Down
2 changes: 1 addition & 1 deletion in/songs.tt
Expand Up @@ -8,7 +8,7 @@
</tr>
[% FOREACH song IN songs.sort('title') -%]
<tr>
<td><a href="[% song.filename %]">[% song.title %]</a></td>
<td><a href="/[% song.filename %]">[% song.title %]</a></td>
</tr>
[% END %]
</table>
Expand Down

0 comments on commit 0f7c8a6

Please sign in to comment.