Last change
on this file since 0e077ef was 0e077ef, checked in by ManuelTrajcev <manueltrajcev7@…>, 5 weeks ago |
2 views wtih controllers and templates added
|
-
Property mode
set to
100644
|
File size:
370 bytes
|
Line | |
---|
1 | <!DOCTYPE html>
|
---|
2 | <html>
|
---|
3 | <head>
|
---|
4 | <title>Most active customers</title>
|
---|
5 | </head>
|
---|
6 | <body>
|
---|
7 | <h1>Most active customers</h1>
|
---|
8 | <ol>
|
---|
9 | <h4>Name - Total orders - Total money spent</h4>
|
---|
10 |
|
---|
11 | {% for row in data %}
|
---|
12 | <li>{{ row.name }} - {{ row.total_orders }} - ${{ row.total_money_spent }}</li>
|
---|
13 | {% endfor %}
|
---|
14 | </ol>
|
---|
15 | </body>
|
---|
16 | </html>
|
---|
17 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.