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.
 
 
 
 
 

32 lines
889 B

{% extends 'base.html' %}
{% block content %}
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'Songs')">Songs</button>
<button class="tablinks" onclick="openTab(event, 'Albums')">Albums</button>
</div>
<div id="Songs" class="tabcontent">
<h2>Song List</h2>
<ul>
{% for song in songs %}
<li>
<a href="{{ url_for('song', song_id=song.id) }}">{{ song.title }} by {{ song.author }}</a>
</li>
{% endfor %}
</ul>
</div>
<div id="Albums" class="tabcontent">
<h2>Albums</h2>
<ul>
{% for album in albums %}
<li>
<a href="{{ url_for('album', album_id=album.id) }}">{{ album.name }} by {{ album.artist }} ({{ album.year }})</a>
</li>
{% endfor %}
</ul>
<hr>
<a href="{{ url_for('add_album') }}" class="button">Add New Album</a>
</div>
{% endblock %}