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