Files
muzak/playlist/templates/Clippy.html
T
mark c7bd7fda9b Clippy update
Plus some refactors of the templates and styling
2024-02-13 23:44:59 +01:00

18 lines
324 B
HTML

{% load static %}
<script>
function closeclippy(e) {
console.log(e)
e.parentElement.classList.add("hide")
}
</script>
<div class="clippy">
<div class="body">
{{ body }}
<br /><button onclick="closeclippy(this)">Ok</button>
</div>
{% if img %}
<img src="{% static img %}" />
{% endif %}
</div>