2023-07-15 07:30:36 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
|
|
<link rel="stylesheet" href="/static/css/reset.css"></link>
|
|
|
|
<link rel="stylesheet" href="/static/css/style.css"></link>
|
2023-07-15 07:34:07 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/comments.css"></link>
|
2023-07-15 07:30:36 +00:00
|
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
<div class="add-comment" style="display: none">
|
|
|
|
{% if request.user.is_anonymous %}
|
|
|
|
<input name="name" type="text" placeholder="your name"></input>
|
|
|
|
<input name="email" type="email" placeholder="your email"></input>
|
|
|
|
<br>
|
|
|
|
{% endif %}
|
|
|
|
{% csrf_token %}
|
|
|
|
<textarea name="text" placeholder="your comment"></textarea>
|
|
|
|
<button id="add-comment">Add comment</button>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block end %}
|
|
|
|
<script>
|
|
|
|
var comments = {{ item.public_comments_json|safe }};
|
|
|
|
</script>
|
|
|
|
<script src="/static/js/utils.js"></script>
|
|
|
|
<script src="/static/js/api.js"></script>
|
|
|
|
<script src="/static/js/icons.js"></script>
|
|
|
|
<script src="/static/js/VideoElement.js"></script>
|
|
|
|
<script src="/static/js/VideoPlayer.js"></script>
|
|
|
|
<script src="/static/js/documents.js"></script>
|
|
|
|
<script src="/static/js/edits.js"></script>
|
|
|
|
<script src="/static/js/item.js"></script>
|
|
|
|
<script src="/static/js/render.js"></script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
pandora.url = new URL('{{ item.url|escapejs }}');
|
|
|
|
pandora.comment = '{{ item.id | escapejs }}';
|
|
|
|
pandora.hostname = pandora.url.hostname
|
|
|
|
pandoraURL = `https://${pandora.hostname}`
|
|
|
|
</script>
|
|
|
|
<script src="/static/js/overwrite.js"></script>
|
|
|
|
|
|
|
|
<script src="/static/js/main.js"></script>
|
|
|
|
<script src="/static/js/comments.js"></script>
|
|
|
|
{% endblock %}
|