710 lines
35 KiB
HTML
710 lines
35 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
<script src="{% static 'js/sortablejs/Sortable.min.js' %}"></script>
|
|
|
|
<div class="container mx-auto px-6">
|
|
<div class="flex flex-wrap space-y-2 items-center justify-between mb-8 dark:text-white">
|
|
<div class="container mx-auto">
|
|
|
|
<h1 class="text-2xl mt-4 font-bold dark:text-white trucate">
|
|
{{ quiz.name }}
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flex items-center justify-center lg:justify-start gap-4 mt-4 flex-wrap">
|
|
|
|
<a href="{% url 'library:copy_quiz' quiz.id %}"
|
|
class="inline-flex bg-green-100 text-green-800 items-center py-2 px-2 gap-2 rounded-md text-sm lg:text-md hover:border-blue-600 border-2">
|
|
duplizieren
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75" />
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
{% if quiz.questions.count %}
|
|
<a href="{% url 'play:create_game' quiz.id %}"
|
|
class="inline-flex bg-blue-100 text-blue-800 items-center py-2 px-2 gap-2 rounded-md text-sm lg:text-md hover:border-blue-600 border-2">
|
|
spielen
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z" />
|
|
</svg>
|
|
</a>
|
|
{% endif %}
|
|
{% if quiz.user_id == request.user %}
|
|
<!-- Edit -->
|
|
|
|
<a href="{% url 'library:edit_quiz' quiz.id %}"
|
|
class="inline-flex bg-orange-100 text-orange-800 items-center py-2 px-2 gap-2 rounded-md text-sm lg:text-md hover:border-blue-600 border-2">
|
|
bearbeiten
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" />
|
|
</svg>
|
|
</a>
|
|
|
|
<!-- Delete -->
|
|
<a href="{% url 'library:delete_quiz' quiz.id %}"
|
|
class="inline-flex bg-red-100 text-red-800 items-center py-2 px-2 gap-2 rounded-md text-sm lg:text-md hover:border-blue-600 border-2">
|
|
löschen
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0" />
|
|
</svg>
|
|
</a>
|
|
{% endif %}
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<summary class="list-none">
|
|
<div class="flex items-center gap-3 mt-12">
|
|
<p class="text-lg font-bold text-blue-600 dark:text-white">Fragen des Quizzes</p>
|
|
<div class="h-0.5 flex-grow bg-gradient-to-r from-blue-600 to-transparent rounded-full"></div>
|
|
</div>
|
|
</summary>
|
|
|
|
<details open>
|
|
<div class="flex justify-end mb-4">
|
|
{% if detail == True %}
|
|
|
|
<a href="{% url 'library:detail_quiz' quiz.id %}?show_answers=false">
|
|
<div class="flex items-center mr-2 dark:text-white">
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M3.98 8.223A10.477 10.477 0 0 0 1.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.451 10.451 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.498a10.522 10.522 0 0 1-4.293 5.774M6.228 6.228 3 3m3.228 3.228 3.65 3.65m7.894 7.894L21 21m-3.228-3.228-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88" />
|
|
</svg>
|
|
Antworten verstecken
|
|
</div>
|
|
|
|
</a>
|
|
{% else %}
|
|
|
|
<a href="{% url 'library:detail_quiz' quiz.id %}?show_answers=true">
|
|
<div class="flex items-center mr-2 dark:text-white">
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" />
|
|
</svg>
|
|
Antworten anzeigen
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="bg-white rounded-xl shadow-md border-2 border-blue-600 dark:!bg-transparent dark:text-white">
|
|
<div class="border-b border-gray-200 p-4">
|
|
<div class="flex justify-between items-center flex-wrap">
|
|
<!-- Titel -->
|
|
|
|
<h2 class="text-xl font-semibold">
|
|
Fragen
|
|
{% for question in questions %}{% if forloop.last %}({{ forloop.counter }}) {% endif %}{% endfor %}
|
|
</h2>
|
|
|
|
|
|
|
|
<!-- Neue Frage Dropdown -->
|
|
{% if quiz.user_id == request.user %}
|
|
<div class="relative inline-block text-left mt-2 sm:mt-0">
|
|
<button type="button" class="inline-flex justify-center w-full rounded-md border border-blue-600 shadow-sm px-4 py-2 bg-blue-600 text-white text-sm font-medium hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" id="menu-button" aria-expanded="true" aria-haspopup="true">
|
|
Neue Frage
|
|
<!-- Pfeil nach unten -->
|
|
<svg class="-mr-1 ml-2 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
|
|
<path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.584l3.71-4.354a.75.75 0 011.08 1.04l-4.25 5a.75.75 0 01-1.08 0l-4.25-5a.75.75 0 01.02-1.06z" clip-rule="evenodd" />
|
|
</svg>
|
|
</button>
|
|
|
|
<!-- Dropdown Menu -->
|
|
<div class="origin-top-right absolute right-0 mt-2 w-56 rounded-md shadow-lg bg-white dark:bg-gray-800 ring-1 ring-black ring-opacity-5 focus:outline-none hidden group" id="dropdown-menu">
|
|
<div class="py-1 flex flex-col" role="menu" aria-orientation="vertical" aria-labelledby="menu-button">
|
|
<a href="{% url 'library:new_question' %}?type=input&quiz_id={{ quiz.id }}" class="block px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700" role="menuitem">Eingabe</a>
|
|
<a href="{% url 'library:new_question' %}?type=multiple_choice&quiz_id={{ quiz.id }}" class="block px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700" role="menuitem">Multiple Choice</a>
|
|
<a href="{% url 'library:new_question' %}?type=true_false&quiz_id={{ quiz.id }}" class="block px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700" role="menuitem">Wahr/Falsch</a>
|
|
<a href="{% url 'library:new_question' %}?type=order&quiz_id={{ quiz.id }}" class="block px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700" role="menuitem">Reihenfolge</a>
|
|
<a href="{% url 'library:new_question' %}?type=guess&quiz_id={{ quiz.id }}" class="block px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700" role="menuitem">Schätzen</a>
|
|
<a href="{% url 'library:new_question' %}?type=map&quiz_id={{ quiz.id }}" class="block px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700" role="menuitem">Karte</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Dropdown Toggle Script -->
|
|
<script>
|
|
const btn = document.getElementById('menu-button');
|
|
const menu = document.getElementById('dropdown-menu');
|
|
|
|
btn.addEventListener('click', () => {
|
|
menu.classList.toggle('hidden');
|
|
});
|
|
|
|
window.addEventListener('click', (e) => {
|
|
if (!btn.contains(e.target) && !menu.contains(e.target)) {
|
|
menu.classList.add('hidden');
|
|
}
|
|
});
|
|
</script>
|
|
|
|
|
|
{% if questions %}
|
|
|
|
<div class="divide-y divide-gray-200" id="questions-list">
|
|
{% for question in questions %}
|
|
|
|
|
|
|
|
<div data-question-id="{{ question.id }}" class="question-item w-full rounded-xl p-4 hover:bg-gray-50 dark:hover:bg-[#2a2f3a] dark:text-white">
|
|
|
|
{% if quiz.user_id == request.user %} <a class="block flex h-full w-full" href="{% url 'library:edit_question' question.id %}" > {% endif %}
|
|
<div class="flex justify-between items-start">
|
|
<p class="question-counter pr-4 ">{{ forloop.counter }}.</p>
|
|
<div class="flex-grow">
|
|
<p class="font-medium">{{ question.data.question }}</p>
|
|
<div class="mt-1">
|
|
<span class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium {% if question.data.type == 'multiple_choice' %}bg-blue-100 text-blue-800 {% elif question.data.type == 'input' %} bg-green-100 text-green-800 {% elif question.data.type == 'map' %}bg-orange-100 text-orange-800 {% elif question.data.type == 'true_false' %}bg-purple-100 text-purple-800{% elif question.data.type == 'order' %}bg-yellow-100 text-yellow-800{% else %}bg-pink-100 text-pink-800 {% endif %}">
|
|
{% if question.data.type == 'multiple_choice' %}Multiple Choice
|
|
{% elif question.data.type == 'input' %}Eingabe
|
|
{% elif question.data.type == 'map' %}Karte
|
|
{% elif question.data.type == 'true_false' %}Wahr/Falsch
|
|
{% elif question.data.type == 'order' %}Reihenfolge
|
|
{% else %}Schätzen
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
<div class="mt-2">
|
|
{% if detail %}
|
|
|
|
{% if question.data.type == 'multiple_choice' %}
|
|
<div class="w-full gap-4 md:flex justify-between ">
|
|
<ul class="space-y-1 ">
|
|
{% for option in question.data.options|dictsort:"order" %}
|
|
|
|
|
|
<li class="flex items-center text-sm ">
|
|
|
|
{% if option.is_correct %}
|
|
<svg class="h-4 w-4 text-green-500 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
|
|
</svg>
|
|
<span class="font-medium text-green-700">{{ option.value }}</span>
|
|
{% else %}
|
|
<svg class="h-4 w-4 text-gray-400 mr-1.5 dark:text-white " fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 12H6"/>
|
|
</svg>
|
|
<span class="text-gray-600 dark:text-white">{{ option.value }}</span>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if question.image.image.url %}
|
|
<img src="{{ question.image.image.url }}" alt="Bild der Frage" class="w-[200px] rounded-lg shadow-md border-blue-600 border-2 rounded-xl shadow-md object-contain mt-4 md:mt-0" />
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% elif question.data.type == 'map' and detail %}
|
|
<div class="mt-3">
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
<span class="font-medium">Zielort:</span>
|
|
<span id="target-location-{{ forloop.counter }}">
|
|
{% if question.data.target_location %}
|
|
{{ question.data.target_location }}
|
|
{% else %}
|
|
Kein Zielort festgelegt
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
{% if question.data.target_location %}
|
|
<script>
|
|
// Format the coordinates to 4 decimal places
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const targetEl = document.getElementById('target-location-{{ forloop.counter }}');
|
|
if (targetEl) {
|
|
const coords = targetEl.textContent.trim().split(',');
|
|
if (coords.length === 2) {
|
|
const lat = parseFloat(coords[0]).toFixed(4);
|
|
const lng = parseFloat(coords[1]).toFixed(4);
|
|
targetEl.textContent = `${lat}, ${lng}`;
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
{% if question.data.tolerance_radius %}
|
|
<div class="text-sm text-gray-600 dark:text-gray-300 mt-1">
|
|
<span class="font-medium">Toleranzradius:</span> {{ question.data.tolerance_radius }} Meter
|
|
</div>
|
|
{% endif %}
|
|
{% if question.image.image.url %}
|
|
<img src="{{ question.image.image.url }}" alt="Bild der Frage" class="w-[200px] rounded-lg shadow-md border-blue-600 border-2 rounded-xl shadow-md object-contain mt-4" />
|
|
{% endif %}
|
|
</div>
|
|
{% elif question.data.type == 'order' %}
|
|
<div class="w-full gap-4 md:flex justify-between ">
|
|
<ul class="space-y-1 ">
|
|
{% for option in question.data.options|dictsort:"order" %}
|
|
<li class="flex items-center text-sm">
|
|
{{ forloop.counter }}.
|
|
<span class="font-medium text-green-700 dark:text-white">{{ option.value }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if question.image.image.url %}
|
|
<img src="{{ question.image.image.url }}" alt="Bild der Frage" class="w-[200px] rounded-lg shadow-md border-blue-600 border-2 rounded-xl shadow-md object-contain mt-4 md:mt-0" />
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% elif question.data.type == 'input' %}
|
|
<div class="w-full gap-4 md:flex justify-between ">
|
|
<ul class="space-y-1 ">
|
|
{% for option in question.data.options %}
|
|
<li class="flex items-center text-sm">
|
|
<svg class="h-4 w-4 text-green-500 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
|
|
</svg>
|
|
<span class="font-medium text-green-700 dark:text-white">{{ option.value }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if question.image.image.url %}
|
|
<img src="{{ question.image.image.url }}" alt="Bild der Frage" class="w-[200px] rounded-lg shadow-md border-blue-600 border-2 rounded-xl shadow-md object-contain mt-4 md:mt-0" />
|
|
{% endif %}
|
|
</div>
|
|
{% elif question.data.type == 'guess' %}
|
|
<div class="w-full gap-4 md:flex justify-between ">
|
|
<ul class="space-y-1 ">
|
|
{% for option in question.data.options %}
|
|
<li class="flex items-center text-sm">
|
|
<svg class="h-4 w-4 text-green-500 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
|
|
</svg>
|
|
<span class="font-medium text-green-700 dark:text-white">{{ option.value }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if question.image.image.url %}
|
|
<img src="{{ question.image.image.url }}" alt="Bild der Frage" class="w-[200px] rounded-lg shadow-md border-blue-600 border-2 rounded-xl shadow-md object-contain mt-4 md:mt-0" />
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<div class="w-full gap-4 md:flex justify-between ">
|
|
{% for option in question.data.options %}
|
|
{% if option.is_correct %}
|
|
<p class="text-sm">
|
|
<span class="text-gray-500 dark:text-white">Richtige Antwort:</span>
|
|
<span class="ml-1 font-medium {% if option.value == 'Wahr' %} text-green-700 {% else %}text-red-700{% endif %}">{{ option.value }}</span>
|
|
</p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if question.image.image.url %}
|
|
<img src="{{ question.image.image.url }}" alt="Bild der Frage" class="w-[200px] rounded-lg shadow-md border-blue-600 border-2 rounded-xl shadow-md object-contain mt-4 md:mt-0" />
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex h-full space-x-2 ml-4 items-center">
|
|
|
|
<a href=" {% url 'library:delete_question' question.id %}"
|
|
class=" text-red-700 px-4 py-1 rounded hover:scale-110 ">
|
|
{% if quiz.user_id == request.user %}
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="dark:text-white size-7 text-gray-600">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0" />
|
|
</svg>
|
|
{% endif %}
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="p-8 text-center">
|
|
<svg class="mx-auto h-12 w-12 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"/>
|
|
</svg>
|
|
<p class="mt-2 text-sm text-gray-500">Noch keine Fragen vorhanden. Erstellen Sie eine neue Frage, um loszulegen!</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</details>
|
|
|
|
|
|
<!-- Kritik zum Quiz -->
|
|
<div class="max-w-full">
|
|
{% if quiz.criticism_quiz.all %}
|
|
|
|
|
|
<summary class="list-none">
|
|
<div class="flex items-center gap-3 mt-12">
|
|
<p class="text-lg font-bold text-red-800 dark:text-white"> Kritik zum Quiz</p>
|
|
<div class="h-0.5 flex-grow bg-gradient-to-r from-red-600 to-transparent rounded-full"></div>
|
|
</div>
|
|
</summary>
|
|
<details>
|
|
|
|
{% for critique in quiz.criticism_quiz.all %}
|
|
|
|
|
|
<div class="max-w-full p-4 mt-4 rounded-2xl bg-gray-100 dark:bg-[#2a2f3a] shadow-sm">
|
|
|
|
{% if critique.id_question != None %}
|
|
{% if quiz.user_id == request.user %}
|
|
<a href="{% url 'library:edit_question' critique.id_question %}" class="text-blue-600 font-bold hover:underline">{{critique.question_criticism}}</a>:
|
|
{% else %}
|
|
<span class="font-bold">{{critique.question_criticism}}</span>:
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<span class="dark:text-white dark:bg-transparent">
|
|
{{ critique.criticism }}
|
|
</span>
|
|
<p class="text-sm italic dark:text-white dark:bg-transparent ">
|
|
Kritik von User {{ critique.user }}
|
|
</p>
|
|
|
|
<div class="flex justify-end">
|
|
<p class="text-xs italic dark:text-white dark:bg-transparent ">
|
|
{{ critique.creation_date }}
|
|
</p>
|
|
</div>
|
|
|
|
{% if quiz.user_id == request.user %}
|
|
<form method="POST" class="space-y-6" enctype="multipart/form-data" action="{% url 'library:delete_critique' critique.id quiz.id %}">
|
|
{% csrf_token %}
|
|
<div class="flex border-t-2 border-gray-200 mt-2">
|
|
<button type="submit" class=" mt-2
|
|
px-4 py-2 border border-transparent shadow-sm text-sm
|
|
font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 cursor-pointer
|
|
focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
|
|
Fehler von mir behoben!
|
|
</button>
|
|
</div>
|
|
</form>
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endfor %}
|
|
</details>
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<summary class="list-none">
|
|
<div class="flex items-center gap-3 mt-12">
|
|
<p class="text-lg font-bold text-blue-600 dark:text-white">Informationen über das Quiz</p>
|
|
<div class="h-0.5 flex-grow bg-gradient-to-r from-blue-600 to-transparent rounded-full"></div>
|
|
</div>
|
|
|
|
</summary>
|
|
<details>
|
|
|
|
<div class="max-w-full p-4 mt-4 rounded-2xl bg-gray-100 dark:bg-transparent shadow-sm">
|
|
<p class="text-lg font-bold text-gray-800 dark:text-white dark:bg-transparent mb-3">
|
|
Quiz-Infos
|
|
</p>
|
|
|
|
|
|
|
|
<div class="flex">
|
|
{% if quiz.description %}
|
|
<p class="text-gray-600 dark:text-white">Beschreibung: {{ quiz.description }}</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="flex">
|
|
{% if quiz.base_quiz %}
|
|
<p class="text-gray-600 dark:text-white">Bearbeitung:<span class="font-bold"> <a href="{% url 'library:overview_quiz' %}?filter=1&user={{ quiz.user_id }}">{{ quiz.user_id }}</a></span></p>
|
|
{% else %}
|
|
<p class="text-gray-600 dark:text-white">Autor:<span class="font-bold"> <a href="{% url 'library:overview_quiz' %}?filter=1&user={{ quiz.user_id }}">{{ quiz.user_id }}</a></span></p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="flex">
|
|
{% if quiz.base_quiz %}
|
|
<p class="text-gray-600 dark:text-white ">Kopie von: <a href="{% url 'library:detail_quiz' quiz.base_quiz.id %}"><span class="font-bold">{{ quiz.base_quiz}}</span></a></p>
|
|
{% endif %}
|
|
</div>
|
|
<div class="flex">
|
|
{% if quiz.base_quiz %}
|
|
<p class="text-gray-600 dark:text-white">Autor:<span class="font-bold"> <a href="{% url 'library:overview_quiz' %}?filter=1&user={{ quiz.base_quiz.user_id }}">{{ quiz.base_quiz.user_id }}</a></span></p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
<div class="flex">
|
|
|
|
<p class="text-gray-600 dark:text-white">Quiz ID:<span class="font-bold"> {{ quiz.pk }}</span></p>
|
|
|
|
</div>
|
|
|
|
{% if quiz.reference_quizzes.all %}
|
|
<div class="flex">
|
|
<p class="text-gray-600 dark:text-white">Verweis auf andere Quizze:
|
|
<span class="font-bold">
|
|
{% for reference in quiz.reference_quizzes.all %}
|
|
<a href="{% url 'library:detail_quiz' reference.id %}">{{ reference.name}}</a>{% if not forloop.last %}, {% endif %}
|
|
{% empty %}
|
|
|
|
{% endfor %}
|
|
</span></p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
<div class="max-w-full p-4 mt-4 rounded-2xl bg-gray-100 dark:bg-transparent shadow-sm">
|
|
<div class="flex flex-col max-w-full">
|
|
<p class="text-lg font-bold text-gray-800 dark:text-white dark:bg-transparent mb-3">
|
|
Credits
|
|
</p>
|
|
{% if quiz.credits %}
|
|
<p class="text-blue-500 mb-2 w-full break-words dark:text-gray-400 ">
|
|
<span class="break-words italic">{{ quiz.credits }}</span>
|
|
<span class="font-normal break-words text-gray-600 dark:text-white">(Credits für das Quiz)</span>
|
|
</p>
|
|
{% else %}
|
|
<p class="text-gray-500 dark:text-gray-400 ">Keine Credits für das Quizformular vorhanden.</p>
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-col max-w-full">
|
|
<ul class="space-y-2">
|
|
{% regroup questions by credits as grouped_credits %}
|
|
{% if grouped_credits|length == 1 and not grouped_credits.0.grouper %}
|
|
<li class="text-gray-500 dark:text-gray-400 ">Keine zusätzlichen Credits für die einzelnen Fragen vorhanden.</li>
|
|
{% else %}
|
|
{% for question in questions %}
|
|
{% if question.credits %}
|
|
<li class="text-blue-500 mb-2 w-full break-words break-words dark:text-gray-400 ">
|
|
<span class="italic">{{ question.credits }}</span>
|
|
<span class="font-normal break-words text-gray-600 dark:text-white">(Frage: {{ forloop.counter }})</span>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="max-w-full p-4 mt-4 rounded-2xl bg-gray-100 dark:bg-transparent shadow-sm">
|
|
<p class="text-lg font-bold text-gray-800 dark:text-white dark:bg-transparent mb-3">
|
|
Quiz-Statistik
|
|
</p>
|
|
|
|
<div class="space-y-2 text-gray-700 dark:text-white ">
|
|
<p>
|
|
<span class="font-semibold">{{ quiz.quiz_played_Lernmodus }}</span>
|
|
mal im Lernmodus gespielt
|
|
</p>
|
|
|
|
<p>
|
|
<span class="font-semibold">{{ quiz.quiz_played_Moderiermodus }}</span>
|
|
mal im Moderiermodus gespielt
|
|
<span class="text-sm text-gray-500 dark:text-gray-400">
|
|
(insg. {{ quiz.quiz_played_Moderiermodus_players }} Spieler)
|
|
</span>
|
|
</p>
|
|
<p class="text-xs opacity-50">
|
|
* zählt nur, wenn das Quiz vollständig beendet wird
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
</details>
|
|
|
|
|
|
{% if quiz.user_id != request.user %}
|
|
|
|
<summary class="list-none">
|
|
<div class="flex items-center gap-3 mt-12">
|
|
<p class="text-lg font-bold text-red-800 dark:text-white">Das Quiz kritisieren</p>
|
|
<div class="h-0.5 flex-grow bg-gradient-to-r from-red-600 to-transparent rounded-full"></div>
|
|
</div>
|
|
</summary>
|
|
<details>
|
|
|
|
{% if user.is_authenticated %}
|
|
<form method="post" class="space-y-6" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div class="max-w-full p-4 mt-4 rounded-2xl bg-gray-100 dark:bg-transparent shadow-sm">
|
|
<p class="text-lg font-bold text-red-800 dark:text-white dark:bg-transparent ">
|
|
Quiz kritisieren
|
|
</p>
|
|
<p class="text-xs opacity-50 mb-3 dark:text-white dark:bg-transparent">
|
|
Sie haben einen Fehler in dem Quiz entdeckt oder halten eine Frage für nicht angemessen? <br>
|
|
Dann weisen Sie den Autor gern darauf hin.
|
|
</p>
|
|
<select name="question_id" required
|
|
class="w-full rounded-lg border-gray-300 p-2 dark:bg-gray-800 dark:text-white">
|
|
<option value="">Kritik an einer bestimmten Frage oder am Quiz insgesamt?</option>
|
|
|
|
<option value="whole_quiz">
|
|
allgemeine Kritik am Quiz {{ quiz.name|truncatechars:60 }}
|
|
</option>
|
|
|
|
{% for question in questions %}
|
|
<option value="{{ question.id }}">
|
|
Frage {{ forloop.counter }}: {{ question.data.question|truncatechars:60 }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
<select name="critic" required
|
|
class="w-full rounded-lg border-gray-300 p-2 dark:bg-gray-800 dark:text-white mb-4">
|
|
<option value="">Was ist Ihre Kritik?</option>
|
|
|
|
<option value="content_error">
|
|
inhaltlicher Fehler
|
|
</option>
|
|
|
|
<option value="spelling_error">
|
|
Rechtschreibfehler oder Grammatikfehler
|
|
</option>
|
|
|
|
<option value="logic_error">
|
|
umständliche oder unsinnige Formulierung
|
|
</option>
|
|
|
|
<option value="inappropriate_error">
|
|
unangemessen
|
|
</option>
|
|
<option value="not_completed_error">
|
|
unvollständig
|
|
</option>
|
|
<option value="source_error">
|
|
Quellen unvollständig
|
|
</option>
|
|
<option value="quiz_error">
|
|
Quiz als "öffentliches Quiz" ungeeignet
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<button type="submit" class="inline-flex items-center
|
|
px-4 py-2 border border-transparent shadow-sm text-sm
|
|
font-medium rounded-md text-white bg-red-600 hover:bg-red-700
|
|
focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500">
|
|
Abschicken
|
|
</button>
|
|
{% elif not user.is_authenticated %}
|
|
|
|
<div class="max-w-full p-4 mt-8 rounded-2xl bg-gray-100 dark:bg-transparent shadow-sm">
|
|
<p class="text-lg font-bold text-red-800 dark:text-white dark:bg-transparent ">
|
|
Quiz kritisieren
|
|
</p>
|
|
<div class="text-xs opacity-50 mb-3 dark:text-white dark:bg-transparent">
|
|
Sie haben einen Fehler in dem Quiz entdeckt oder halten eine Frage für nicht angemessen? <br>
|
|
Dann weisen Sie den Autor gern darauf hin.
|
|
Sie können nur Quizze anderer User kritisieren.
|
|
</div>
|
|
<a class="inline-flex items-center
|
|
px-4 py-2 border border-transparent shadow-sm text-sm
|
|
font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700
|
|
focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" href="{% url 'accounts:login' %}">Anmelden</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
|
|
</div>
|
|
|
|
</form>
|
|
</details>
|
|
|
|
|
|
|
|
|
|
{% if quiz.user_id == request.user %}
|
|
<style>.sortable-drag {
|
|
position: fixed !important;
|
|
z-index: 99999 !important;
|
|
pointer-events: none;
|
|
}
|
|
</style>
|
|
<script>
|
|
Sortable.create(document.getElementById('questions-list'), {
|
|
animation: 300,
|
|
swapThreshold: 0.5,
|
|
|
|
delay: 100,
|
|
delayOnTouchOnly: true,
|
|
touchStartThreshold: 6,
|
|
|
|
forceFallback: true,
|
|
fallbackTolerance: 6,
|
|
fallbackOnBody: true,
|
|
|
|
|
|
|
|
onStart: () => {
|
|
if (navigator.vibrate) {
|
|
navigator.vibrate(75);
|
|
}
|
|
},
|
|
|
|
onEnd: () => {
|
|
|
|
const items = Array.from(document.querySelectorAll('#questions-list .question-item'));
|
|
|
|
// Counter im Browser updaten
|
|
items.forEach((el, i) => {
|
|
const counterEl = el.querySelector('.question-counter');
|
|
if (counterEl) counterEl.textContent = `${i+1}.`;
|
|
});
|
|
// Reihenfolge sammeln
|
|
const order = Array.from(document.querySelectorAll('#questions-list .question-item'))
|
|
.map((el, i) => ({id: el.dataset.questionId, position: i+1}));
|
|
|
|
|
|
// an Django senden
|
|
fetch("{% url 'library:reorder_questions' %}", {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-CSRFToken': '{{ csrf_token }}'
|
|
},
|
|
body: JSON.stringify({order})
|
|
});
|
|
}
|
|
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|