Files
interchan/board/templates/board/report_success.html
2022-06-19 19:26:19 -07:00

29 lines
595 B
HTML

{% extends "board/base.html" %}
{% load l10n %}
{# Title #}
{% block title %}{% localize on %}Report success{% endlocalize %}{% endblock %}
{# Body #}
{% block content %}
<div class="row" id="message">
{% localize on %}Post reported. This window will close in 1 second.{% endlocalize %}
</div>
<script>
function isIframe() {
try {
return window.self !== window.top;
} catch (_) {
return true;
}
}
setTimeout(function() {
if(isIframe()) {
window.top.reportWindow.close();
} else {
window.close();
}
}, 1000);
</script>
{% endblock %}