Last change
on this file since 77b2536 was 4abe330, checked in by ManuelTrajcev <manueltrajcev7@…>, 4 weeks ago |
rank_list_artists view update + bootstrap styling
|
-
Property mode
set to
100644
|
File size:
1.6 KB
|
Rev | Line | |
---|
[bfca48b] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html>
|
---|
| 3 | <head>
|
---|
[4abe330] | 4 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet"
|
---|
| 5 | integrity="sha384-SgOJa3DmI69IUzQ2PVdRZhwQ+dy64/BUtbMJw1MZ8t5HZApcHrRKUc4W0kG879m7" crossorigin="anonymous">
|
---|
| 6 | <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js"
|
---|
| 7 | integrity="sha384-k6d4wzSIapyDyv1kpU366/PK5hCdSbCRGRCMv+eplOQJWyd1fbcAu9OCUj5zNLiq"
|
---|
| 8 | crossorigin="anonymous"></script>
|
---|
| 9 | <title>Artist with Highest Earnings</title>
|
---|
[bfca48b] | 10 | </head>
|
---|
[4abe330] | 11 | <body class="d-flex bg-light">
|
---|
| 12 | {% include 'sidebar.html' %}
|
---|
| 13 | <div class="container mt-5">
|
---|
| 14 | <h1 class="text-center mb-4">Artist with Highest Earnings</h1>
|
---|
[bfca48b] | 15 |
|
---|
[4abe330] | 16 | <div class="list-group">
|
---|
| 17 | <div class="row">
|
---|
| 18 | <div class="col-4 font-weight-bold"><strong>Name</strong></div>
|
---|
| 19 | <div class="col-4 font-weight-bold"><strong>Total Invoices</strong></div>
|
---|
| 20 | <div class="col-4 font-weight-bold"><strong>Total Money Earned</strong></div>
|
---|
| 21 | </div>
|
---|
| 22 |
|
---|
| 23 | {% for row in data %}
|
---|
| 24 |
|
---|
| 25 | <a href="#" class="list-group-item list-group-item-action">
|
---|
| 26 | <div class="row">
|
---|
| 27 | <div class="col-4 font-weight-bold">{{ row.name }}</div>
|
---|
| 28 | <div class="col-4 font-weight-bold">{{ row.num_invoices }}</div>
|
---|
| 29 | <div class="col-4 font-weight-bold">${{ row.money_earned }}</div>
|
---|
| 30 | </div>
|
---|
| 31 | </a>
|
---|
| 32 |
|
---|
| 33 | {% empty %}
|
---|
| 34 | <div class="alert alert-warning" role="alert">
|
---|
| 35 | No data found.
|
---|
| 36 | </div>
|
---|
| 37 | {% endfor %}
|
---|
| 38 | </div>
|
---|
| 39 | </div>
|
---|
[bfca48b] | 40 | </body>
|
---|
| 41 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.