first backend frontend split
with docker compose file nextjs something something also includes migrations
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{% extends "Base.html" %}
|
||||
|
||||
{% block window-title %}
|
||||
Overzicht
|
||||
{% endblock %}
|
||||
|
||||
{% block multi-row %}
|
||||
{% comment %} <menu role="tablist" hx-boost="true" class="multirows">
|
||||
<li role="tab" aria-selected="true">
|
||||
<a href="{% url 'overview' %}">Tracks</a>
|
||||
</li>
|
||||
<li role="tab">
|
||||
<a href="{% url 'playlist-list' %}">Playlists</a>
|
||||
</li>
|
||||
</menu> {% endcomment %}
|
||||
{% endblock %}
|
||||
|
||||
{% block main-content %}
|
||||
<p>Onderstaand alle nummers waar je al op gestemd hebt.</p>
|
||||
<ul class="tree-view overview">
|
||||
{% for artist, albums in artists.items %}
|
||||
<li>
|
||||
<details>
|
||||
<summary>{{artist}}</summary>
|
||||
<ul>
|
||||
{% for album, tracks in albums.items %}
|
||||
<li>
|
||||
<details>
|
||||
<summary>{{album}}</summary>
|
||||
<ul>
|
||||
{% for track in tracks %}
|
||||
<li>
|
||||
<a href="{{track.link}}" target="_blank">{{track.name}}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</details>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</details>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user