source: templates/rank_list_most_active_customers.html@ 0e077ef

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&emsp;-&emsp;Total orders&emsp;-&emsp;Total money spent</h4>
10
11 {% for row in data %}
12 <li>{{ row.name }}&emsp;-&emsp;{{ row.total_orders }}&emsp;-&emsp;${{ row.total_money_spent }}</li>
13 {% endfor %}
14</ol>
15</body>
16</html>
17
Note: See TracBrowser for help on using the repository browser.