change display of Comics from cards to table

This commit is contained in:
Thomas Peetz
2025-05-13 07:57:58 +02:00
committed by Thomas Peetz
parent 18ef6efc4e
commit 57ae257e0c
@@ -58,15 +58,3 @@
</div>
</div>
{% endblock %}
{% block scripts %}
<script type="text/javascript">
function delete_job(id){
fetch('/comics/worktypes/'+id+'/delete/'+id,{
method:'DELETE',})
.then(response => response.json())
.then(document.getElementById('result').innerHTML = "Refreshing...")
.then(data => document.getElementById('result').innerHTML = data.detail);
}
</script>
{% endblock %}