-
Notifications
You must be signed in to change notification settings - Fork 0
/
albums.html
34 lines (31 loc) · 1007 Bytes
/
albums.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Albums</title>
<style>
/* Add your custom styles here */
</style>
</head>
<body>
<h1>Albums</h1>
<a href="{{ url_for('create_album') }}">Create New Album</a>
{% if albums %}
<ul>
{% for album in albums %}
<li>
<h2>{{ album.name }}</h2>
<p>{{ album.description }}</p>
<a href="{{ url_for('album_details', album_id=album.album_id) }}">View Album</a>
<a href="{{ url_for('edit_album', album_id=album.album_id) }}">Edit Album</a>
<form action="{{ url_for('delete_album', album_id=album.album_id) }}" method="POST">
<input type="submit" value="Delete Album">
</form>
</li>
{% endfor %}
</ul>
{% else %}
<p>No albums found.</p>
{% endif %}
<a href="{{ url_for('index') }}">Back to Home</a>
</body>
</html>