source: templates/rank_list_artists.html@ 17ed1da

Last change on this file since 17ed1da was bfca48b, checked in by ManuelTrajcev <manueltrajcev7@…>, 4 weeks ago

+4 views with controlers and templates

  • Property mode set to 100644
File size: 297 bytes
Line 
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&emsp;-&emsp;Total invoices</h4>
10
11 {% for row in data %}
12 <li>{{ row.name }}&emsp;-&emsp;{{ row.num_invoices }}</li>
13 {% endfor %}
14</ol>
15</body>
16</html>
17
Note: See TracBrowser for help on using the repository browser.