2016-09-18 08:33:46 +00:00
|
|
|
<!DOCTYPE html5>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-11-07 02:00:30 +00:00
|
|
|
{% import "photo_card.html" as photo_card %}
|
2016-09-18 08:33:46 +00:00
|
|
|
{% import "header.html" as header %}
|
2017-03-11 01:08:38 +00:00
|
|
|
<title>Album {{album.display_name}}</title>
|
2016-09-18 08:33:46 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="/static/common.css">
|
2017-04-23 04:38:23 +00:00
|
|
|
<script src="/static/common.js"></script>
|
2016-11-27 09:06:11 +00:00
|
|
|
|
2016-09-18 08:33:46 +00:00
|
|
|
<style>
|
2016-12-14 21:26:42 +00:00
|
|
|
p
|
|
|
|
{
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2016-09-18 08:33:46 +00:00
|
|
|
#content_body
|
|
|
|
{
|
|
|
|
/* overriding common.css here */
|
|
|
|
display: block;
|
|
|
|
}
|
2017-04-23 04:38:23 +00:00
|
|
|
#title_editor,
|
|
|
|
#description_editor
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
#description_editor textarea
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#description_editor
|
|
|
|
{
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
.hidden
|
|
|
|
{
|
|
|
|
display: none;
|
|
|
|
}
|
2016-09-18 08:33:46 +00:00
|
|
|
</style>
|
2016-11-27 09:06:11 +00:00
|
|
|
</head>
|
|
|
|
|
2016-09-18 08:33:46 +00:00
|
|
|
|
|
|
|
<body>
|
2016-12-18 13:12:14 +00:00
|
|
|
{{header.make_header(session=session)}}
|
2016-09-18 08:33:46 +00:00
|
|
|
<div id="content_body">
|
2017-04-23 04:38:23 +00:00
|
|
|
<h2>
|
|
|
|
{% if album.title %}
|
|
|
|
<span id="title_text">{{album.title}}</span>
|
|
|
|
{% else %}
|
|
|
|
<span id="title_text">Album {{album.id}}</span>
|
|
|
|
{% endif %}
|
|
|
|
<input id="title_editor" class="hidden" type="text" value="{{album.title}}" placeholder="title">
|
|
|
|
<button id="edit_button" class="green_button" onclick="start_editing()">edit</button>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<p id="description_text">{{album.description}}</p>
|
|
|
|
|
|
|
|
<div id="description_editor" class="hidden">
|
|
|
|
<textarea id="description_editor_box" placeholder="description">{{album.description}}</textarea>
|
|
|
|
<span>
|
|
|
|
<button id="save_button" class="green_button" onclick="finish_editing(true)">Save</button>
|
|
|
|
<button id="cancel_button" class="red_button" onclick="finish_editing(false)">Cancel</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2017-04-01 04:48:27 +00:00
|
|
|
{% set viewparam = "?view=list" if view == "list" else "" %}
|
2017-04-23 04:38:23 +00:00
|
|
|
{% set parent = album.parent() %}
|
2016-09-18 08:33:46 +00:00
|
|
|
{% if parent %}
|
2017-04-01 04:48:27 +00:00
|
|
|
<h3>Parent: <a href="/album/{{parent.id}}{{viewparam}}">{{parent.display_name}}</a></h3>
|
2016-11-06 00:58:37 +00:00
|
|
|
{% else %}
|
|
|
|
<h3>Parent: <a href="/albums">Albums</a></h3>
|
2016-09-18 08:33:46 +00:00
|
|
|
{% endif %}
|
2017-04-23 04:38:23 +00:00
|
|
|
|
2016-12-21 00:33:40 +00:00
|
|
|
{% set sub_albums = album.children() %}
|
|
|
|
{% if sub_albums %}
|
2016-09-18 08:33:46 +00:00
|
|
|
<h3>Sub-albums</h3>
|
|
|
|
<ul>
|
2017-02-05 02:30:02 +00:00
|
|
|
{% for sub_album in sub_albums|sort(attribute='title') %}
|
2017-04-01 04:48:27 +00:00
|
|
|
<li><a href="/album/{{sub_album.id}}{{viewparam}}">{{sub_album.display_name}}</a>
|
2016-09-18 08:33:46 +00:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
2017-04-23 04:38:23 +00:00
|
|
|
|
2016-12-24 03:49:51 +00:00
|
|
|
{% set photos = album.photos() %}
|
2017-04-23 04:38:23 +00:00
|
|
|
{% if photos or sub_albums %}
|
2016-12-21 03:53:06 +00:00
|
|
|
<span>
|
|
|
|
Download:
|
2017-02-25 06:07:59 +00:00
|
|
|
{% if photos %}
|
|
|
|
<a href="/album/{{album.id}}.zip?recursive=no">
|
|
|
|
These files ({{album.sum_bytes(recurse=False, string=True)}})
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if sub_albums %}
|
|
|
|
<a href="/album/{{album.id}}.zip?recursive=yes">
|
|
|
|
Include children ({{album.sum_bytes(recurse=True, string=True)}})
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2016-12-21 03:53:06 +00:00
|
|
|
</span>
|
2017-04-23 04:38:23 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2016-09-18 08:33:46 +00:00
|
|
|
{% if photos %}
|
2017-03-31 01:56:27 +00:00
|
|
|
<h3>Photos</h3>
|
|
|
|
{% if view != "list" %}
|
|
|
|
<a href="?view=list">List view</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="?view=grid">Grid view</a>
|
|
|
|
{% endif %}
|
|
|
|
<ul>
|
2016-09-18 08:33:46 +00:00
|
|
|
{% for photo in photos %}
|
2017-03-31 01:56:27 +00:00
|
|
|
{{photo_card.create_photo_card(photo, view=view)}}
|
2016-09-18 08:33:46 +00:00
|
|
|
{% endfor %}
|
2017-03-31 01:56:27 +00:00
|
|
|
</ul>
|
2016-09-18 08:33:46 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2017-04-23 04:38:23 +00:00
|
|
|
var edit_button = document.getElementById("edit_button");
|
|
|
|
var save_button = document.getElementById("save_button");
|
|
|
|
var cancel_button = document.getElementById("cancel_button");
|
|
|
|
|
|
|
|
var title_text = document.getElementById("title_text");
|
|
|
|
var title_editor = document.getElementById("title_editor");
|
|
|
|
var description_text = document.getElementById("description_text");
|
|
|
|
var description_editor = document.getElementById("description_editor");
|
|
|
|
var description_editor_box = document.getElementById("description_editor_box");
|
|
|
|
|
|
|
|
bind_box_to_button(title_editor, save_button);
|
|
|
|
|
|
|
|
var title_is_blank = "{{album.title}}" === "";
|
|
|
|
var blank_title_text = "Album {{album.id}}";
|
|
|
|
|
2016-10-21 03:15:24 +00:00
|
|
|
function submit_tag(callback)
|
|
|
|
{
|
2016-12-21 00:33:40 +00:00
|
|
|
add_photo_tag('{{album.id}}', add_tag_box.value, callback);
|
2016-10-21 03:15:24 +00:00
|
|
|
add_tag_box.value = "";
|
|
|
|
}
|
2017-04-23 04:38:23 +00:00
|
|
|
|
|
|
|
function start_editing()
|
|
|
|
{
|
|
|
|
edit_button.classList.add("hidden");
|
|
|
|
title_text.classList.add("hidden");
|
|
|
|
title_editor.classList.remove("hidden");
|
|
|
|
description_text.classList.add("hidden");
|
|
|
|
description_editor.classList.remove("hidden");
|
|
|
|
|
|
|
|
if (title_is_blank)
|
|
|
|
{
|
|
|
|
title_editor.value = "";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
title_editor.value = title_text.innerText;
|
|
|
|
}
|
|
|
|
title_editor.focus();
|
|
|
|
description_editor_box.value = description_text.innerText;
|
|
|
|
}
|
|
|
|
|
|
|
|
function finish_editing(do_save)
|
|
|
|
{
|
|
|
|
if (do_save === true)
|
|
|
|
{
|
|
|
|
console.log("save");
|
|
|
|
var title = title_editor.value;
|
|
|
|
var description = description_editor_box.value;
|
|
|
|
if (title === "")
|
|
|
|
{
|
|
|
|
document.title = "Album {{album.id}}";
|
|
|
|
title_text.innerText = blank_title_text;
|
|
|
|
title_is_blank = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
document.title = "Album " + title;
|
|
|
|
title_text.innerText = title;
|
|
|
|
title_is_blank = false;
|
|
|
|
}
|
|
|
|
description_text.innerText = description;
|
|
|
|
|
|
|
|
var url = "/album/{{album.id}}/edit";
|
|
|
|
var data = new FormData();
|
|
|
|
data.append("title", title);
|
|
|
|
data.append("description", description);
|
|
|
|
callback = function(){};
|
|
|
|
post(url, data, callback);
|
|
|
|
}
|
|
|
|
edit_button.classList.remove("hidden");
|
|
|
|
title_text.classList.remove("hidden");
|
|
|
|
title_editor.classList.add("hidden");
|
|
|
|
description_text.classList.remove("hidden");
|
|
|
|
description_editor.classList.add("hidden");
|
|
|
|
}
|
2016-11-27 09:06:11 +00:00
|
|
|
</script>
|
2017-04-23 04:38:23 +00:00
|
|
|
</html>
|