summaryrefslogtreecommitdiff
path: root/src/templates/templates/question-image.ftl
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/templates/question-image.ftl')
-rw-r--r--src/templates/templates/question-image.ftl17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/templates/templates/question-image.ftl b/src/templates/templates/question-image.ftl
deleted file mode 100644
index 280c4aa..0000000
--- a/src/templates/templates/question-image.ftl
+++ /dev/null
@@ -1,17 +0,0 @@
-<h1>${question.question}</h1>
-<#if question.description??>
-<p>
- ${question.description}
-</p>
-</#if>
-
-<div class="imageQuestion question">
- <#list question.answers?keys as answerid>
- <#if selectedAnswerId?? && answerid == selectedAnswerId>
- <img class="answer selected" id="${answerid}" onclick="selectAnswer(this)" src="${staticRoot}/images/${question.id}-${answerid}-hover.jpg" />
- <#else>
- <img class="answer" id="${answerid}" onclick="selectAnswer(this)" src="${staticRoot}/images/${question.id}-${answerid}.jpg" />
- </#if>
- </#list>
-</div>
-