Changeset d715225 for templates/sidebar.html
- Timestamp:
- 05/07/25 11:05:41 (10 days ago)
- Branches:
- master
- Children:
- 75ea229
- Parents:
- d1a8cb0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
templates/sidebar.html
rd1a8cb0 rd715225 1 <div class="h-100 d-flex flex-column flex-shrink-0 p-3 bg-light-subtle border border-2 border-secondary-subtle rounded-end-5" style="width: 250px;"> 1 <div class="h-100 d-flex flex-column flex-shrink-0 p-3 bg-light-subtle border border-2 border-secondary-subtle rounded-end-5" 2 style="width: 250px;"> 2 3 <h4 class="mb-4">Menu</h4> 3 4 <ul class="nav nav-pills flex-column mb-auto"> 4 5 <li class="nav-item"> 5 <a href="{% url 'album_list' %}" class="nav-link {% if request.path == '/album/' %}active{% endif %}" aria-current="page"> 6 <a href="{% url 'album_list' %}" class="nav-link {% if request.path == '/album/' %}active{% endif %}" 7 aria-current="page"> 6 8 Album List 7 9 </a> … … 13 15 </li> 14 16 <li class="nav-item"> 15 <a href="{% url 'avg_track_duration' %}" class="nav-link {% if request.path == '/artist/avg-track-duration' %}active{% endif %}">16 Average Track Duration17 </a>18 </li>19 <li class="nav-item">20 <a href="{% url 'avg_track_price' %}" class="nav-link {% if request.path == '/artist/avg-track-price' %}active{% endif %}">21 Average Track Price per Artist22 </a>23 </li>24 <li class="nav-item">25 <a href="{% url 'rank_list_artists' %}" class="nav-link {% if request.path == '/artist/most-popular' %}active{% endif %}">26 Artist with Highest Earnings27 </a>28 </li>29 <li class="nav-item">30 17 <a href="{% url 'track_list' %}" class="nav-link {% if request.path == '/track/' %}active{% endif %}"> 31 18 Track List … … 33 20 </li> 34 21 <li class="nav-item"> 35 <a href="{% url 'genres_per_customer' %}" class="nav-link {% if request.path == '/customer/genres-per-customer' %}active{% endif %}"> 22 <a href="{% url 'avg_track_duration' %}" 23 class="nav-link {% if request.path == '/artist/avg-track-duration' %}active{% endif %}"> 24 Average Track Duration 25 </a> 26 </li> 27 <li class="nav-item"> 28 <a href="{% url 'avg_track_price' %}" 29 class="nav-link {% if request.path == '/artist/avg-track-price' %}active{% endif %}"> 30 Average Track Price per Artist 31 </a> 32 </li> 33 <li class="nav-item"> 34 <a href="{% url 'rank_list_artists' %}" 35 class="nav-link {% if request.path == '/artist/most-popular' %}active{% endif %}"> 36 Artist with Highest Earnings 37 </a> 38 </li> 39 <li class="nav-item"> 40 <a href="{% url 'track_count_per_genre' %}" 41 class="nav-link {% if request.path == '/track/per-genre' %}active{% endif %}"> 42 Track Count per Genre 43 </a> 44 </li> 45 <li class="nav-item"> 46 <a href="{% url 'rank_list_most_active_customers' %}" 47 class="nav-link {% if request.path == '/customer/rank-list' %}active{% endif %}"> 48 Rank List of Most Active Customers 49 </a> 50 </li> 51 <li class="nav-item"> 52 <a href="{% url 'media_type_percentage' %}" 53 class="nav-link {% if request.path == '/media-type/percentage' %}active{% endif %}"> 54 Media Type Percentage 55 </a> 56 </li> 57 <li class="nav-item"> 58 <a href="{% url 'most_listened_genre_per_customer' %}" 59 class="nav-link {% if request.path == '/customer/most-popular-genre-per-customer' %}active{% endif %}"> 60 Most Popular Genre per Customer 61 </a> 62 </li> 63 <li class="nav-item"> 64 <a href="{% url 'genres_per_customer' %}" 65 class="nav-link {% if request.path == '/customer/genres-per-customer' %}active{% endif %}"> 36 66 Genres per Customer 37 67 </a> 38 68 </li> 39 69 <li class="nav-item"> 40 <a href="{% url 'invoice_per_customer_after_date' %}" class="nav-link {% if request.path == '/customer/invoices-per-customer' %}active{% endif %}"> 70 <a href="{% url 'invoice_per_customer_after_date' %}" 71 class="nav-link {% if request.path == '/customer/invoices-per-customer' %}active{% endif %}"> 41 72 Invoices per Customer 42 73 </a> 43 74 </li> 75 44 76 <li class="nav-item"> 45 <a href="{% url 'most_listened_genre_per_customer' %}" class="nav-link {% if request.path == '/customer/most-popular-genre-per-customer' %}active{% endif %}"> 46 Most Popular Genre per Customer 47 </a> 48 </li> 49 <li class="nav-item"> 50 <a href="{% url 'media_type_percentage' %}" class="nav-link {% if request.path == '/media-type/percentage' %}active{% endif %}"> 51 Media Type Percentage 52 </a> 53 </li> 54 <li class="nav-item"> 55 <a href="{% url 'track_count_per_genre' %}" class="nav-link {% if request.path == '/track/per-genre' %}active{% endif %}"> 56 Track Count per Genre 57 </a> 58 </li> 59 <li class="nav-item"> 60 <a href="{% url 'rank_list_most_active_customers' %}" class="nav-link {% if request.path == '/customer/rank-list' %}active{% endif %}"> 61 Rank List of Most Active Customers 62 </a> 63 </li> 64 <li class="nav-item"> 65 <a href="{% url 'most_popular_artist_per_customer_per_genre' %}" class="nav-link {% if request.path == '/customer/artist-per-genre' %}active{% endif %}"> 77 <a href="{% url 'most_popular_artist_per_customer_per_genre' %}" 78 class="nav-link {% if request.path == '/customer/artist-per-genre' %}active{% endif %}"> 66 79 Most Popular Artists Per Customer 67 80 </a>
Note:
See TracChangeset
for help on using the changeset viewer.