Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
628 B

  1. <!DOCTYPE html>
  2. {% load static %}
  3. {% load render_table from django_tables2 %}
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>User History</title>
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  9. <link rel="stylesheet" href="{% static 'css/dark_bg.css' %}">
  10. </head>
  11. <body>
  12. <h1>{{ user_id }}'s Listening History</h1>
  13. <a class="btn btn-primary disabled" href="" role="button">Export CSV</a>
  14. {% render_table user_history_table %}
  15. </body>
  16. </html>