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.

20 lines
817 B

6 years ago
6 years ago
6 years ago
6 years ago
  1. <!DOCTYPE html>
  2. {% load static %}
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Logged In</title>
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  8. <link rel="stylesheet" href="{% static 'spotifyvis/css/dark_bg.css' %}">
  9. </head>
  10. <body>
  11. <h1>{{ user_id }}'s Graphs</h1>
  12. <a class="btn btn-primary" href="{% url "display_audio_features" user_secret %}"
  13. role="button">Audio Features</a>
  14. <a class="btn btn-primary" href="{% url "display_genre_graph" user_secret %}"
  15. role="button">Genres</a>
  16. <a class="btn btn-primary" href="{% url "display_artist_graph" user_secret %}" role="button">
  17. Artists
  18. </a>
  19. </body>
  20. </html>