~cjsmo/laudio/laudio

« back to all changes in this revision

Viewing changes to src/laudio/tpl/ajax/playlist_songs.html

  • Committer: Bernhard Posselt
  • Date: 2012-07-21 21:46:45 UTC
  • Revision ID: git-v1:65b8b97f72df4a9245bd564e3344b3e897472143
django 1.4 changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% for song in songs %}
 
2
    <tr title="{{ song.id }}" 
 
3
        id="plrow{{ forloop.counter }}"
 
4
        class="{% cycle 'line1' 'line2' %}" 
 
5
        onclick="select_lines(this)"
 
6
        ondblclick="play_row(this);">
 
7
        <td>{{ song.artist }} - {{ song.title }}</td>
 
8
    </tr>
 
9
{% endfor %}