source:
templates/track_count_per_genre.html@
0e077ef
Last change on this file since 0e077ef was d7662b5, checked in by , 3 weeks ago | |
---|---|
|
|
File size: 245 bytes |
Line | |
---|---|
1 | <!DOCTYPE html> |
2 | <html> |
3 | <head> |
4 | <title>Track count per Genre</title> |
5 | </head> |
6 | <body> |
7 | <h1>Track Count Per Genre</h1> |
8 | <ul> |
9 | {% for row in data %} |
10 | <li>{{ row.genre }} - {{ row.count }} tracks</li> |
11 | {% endfor %} |
12 | </ul> |
13 | </body> |
14 | </html> |
Note:
See TracBrowser
for help on using the repository browser.