27 lines
724 B
HTML
27 lines
724 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block script %}
|
|
window.onload = function() {
|
|
var title = 'Suspended: ' + document.location.hash.substr(1);
|
|
var node = document.getElementsByTagName('h1')[0];
|
|
node.innerText = document.title = title;
|
|
};
|
|
setTimeout(function() {
|
|
/* drop first focus event, to avoid problems
|
|
(allow to go easily to newer history entries) */
|
|
var triggered = false;
|
|
window.onfocus = function() {
|
|
if (! triggered) {
|
|
triggered = true;
|
|
window.history.back();
|
|
}
|
|
};
|
|
}, 1000);
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<noscript><h1 class="noscript">View Only</h1><p class="noscript-text">Changing settings requires javascript to be enabled!</p></noscript>
|
|
<header><h1>{{ title }}</h1></header>
|
|
|
|
{% endblock %}
|