Last change
on this file since bfca48b was bfca48b, checked in by ManuelTrajcev <manueltrajcev7@…>, 4 weeks ago |
+4 views with controlers and templates
|
-
Property mode
set to
100644
|
File size:
328 bytes
|
Line | |
---|
1 | <!DOCTYPE html>
|
---|
2 | <html>
|
---|
3 | <head>
|
---|
4 | <title>Average Track Price per Artist</title>
|
---|
5 | </head>
|
---|
6 | <body>
|
---|
7 | <h1>Average Track Price per Artist</h1>
|
---|
8 | <ol>
|
---|
9 | <h4>Name - Avg. track price</h4>
|
---|
10 |
|
---|
11 | {% for row in data %}
|
---|
12 | <li>{{ row.name }} - {{ row.avg_price_per_track }}</li>
|
---|
13 | {% endfor %}
|
---|
14 | </ol>
|
---|
15 | </body>
|
---|
16 | </html>
|
---|
17 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.