etiquette/frontends/etiquette_flask/templates/albums.html

37 lines
793 B
HTML
Raw Normal View History

2016-09-18 08:33:46 +00:00
<!DOCTYPE html5>
<html>
<head>
{% import "header.html" as header %}
<title>Albums</title>
<meta charset="UTF-8">
2017-07-21 06:10:48 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/static/css/common.css">
<script src="/static/js/common.js"></script>
2016-11-27 09:06:11 +00:00
2016-09-18 08:33:46 +00:00
<style>
#content_body
{
flex-direction: column;
}
</style>
2016-11-27 09:06:11 +00:00
</head>
2016-09-18 08:33:46 +00:00
<body>
{{header.make_header(session=session)}}
2016-09-18 08:33:46 +00:00
<div id="content_body">
2017-04-23 04:40:48 +00:00
<h2>Albums</h2>
<ul>
{% for album in albums %}
<li><a href="/album/{{album.id}}">{{album.display_name}}</a></li>
{% endfor %}
<li><button class="green_button" onclick="create_album_and_follow();">Create album</button></li>
2017-04-23 04:40:48 +00:00
</ul>
2016-09-18 08:33:46 +00:00
</div>
</body>
<script type="text/javascript">
2016-11-27 09:06:11 +00:00
</script>
</html>