4a3980805305f3f07752cef226e980239e76cbe1
[audio.git] / apps / archive / templates / archive / tags / multiple_tags_table.html
1 <table>
2     {% for t, v in tags.items %}
3         <tr><th>{{t}}</th><td>
4         {% for x in v %}
5             <div>{{x}}</div>
6         {% endfor %}
7         </td></tr>
8     {% endfor %}
9 </table>