source: templates/avg_track_duration.html@ 0e077ef

Last change on this file since 0e077ef was 0e077ef, checked in by ManuelTrajcev <manueltrajcev7@…>, 3 weeks ago

2 views wtih controllers and templates added

  • Property mode set to 100644
File size: 260 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head>
4 <title>Average track duration per artist</title>
5</head>
6<body>
7<h1>Average track duration per artist</h1>
8<ul>
9 {% for row in data %}
10 <li>{{ row.artist }} - {{ row.avg }}</li>
11 {% endfor %}
12</ul>
13</body>
14</html>
Note: See TracBrowser for help on using the repository browser.