Last change
on this file since 59b2e9c was 59b2e9c, checked in by ManuelTrajcev <manueltrajcev7@…>, 2 weeks ago |
querry mostr popular artist per customer for each genre
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[0e077ef] | 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>Average Track Duration per Artist</title>
|
---|
[0e077ef] | 10 | </head>
|
---|
[4abe330] | 11 | <body class="d-flex bg-light">
|
---|
| 12 | {% include 'sidebar.html' %}
|
---|
| 13 |
|
---|
| 14 | <div class="container mt-5">
|
---|
| 15 | <h1 class="text-center mb-4">Average Track Duration per Artist</h1>
|
---|
| 16 |
|
---|
| 17 | <div class="list-group">
|
---|
| 18 | {% for row in data %}
|
---|
| 19 | <a href="#" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
|
---|
| 20 | <div>
|
---|
[59b2e9c] | 21 | {{ row.artist }}
|
---|
[4abe330] | 22 | </div>
|
---|
| 23 | <span class="badge bg-primary rounded-pill">{{ row.avg }}</span>
|
---|
| 24 | </a>
|
---|
| 25 | {% endfor %}
|
---|
| 26 | </div>
|
---|
| 27 | </div>
|
---|
[0e077ef] | 28 | </body>
|
---|
[4abe330] | 29 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.