diff --git a/README.md b/README.md index d47dbc3..3c654be 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # fp_masterquiz -version 5.1.3 +version 5.1.4 TYPO3 extension to create a quiz, poll or test. The participant result will be saved in the DB too and can be deleted automatically via Scheduler. @@ -54,6 +54,6 @@ Changes in version 5.0.3: Changes in version 5.1: - More layout possibilities: group a normal quiz/poll by tags; show answers inline (span instead of div). -Changes in version 5.1.2: +Changes in version 5.1.4: - More support for group by tags. - More support for matrix-questions. \ No newline at end of file diff --git a/Resources/Private/Backend/Partials/Question/Chart.html b/Resources/Private/Backend/Partials/Question/Chart.html index 692e30a..b758ad7 100644 --- a/Resources/Private/Backend/Partials/Question/Chart.html +++ b/Resources/Private/Backend/Partials/Question/Chart.html @@ -28,11 +28,11 @@

{question.title}

- + - +
{cat3count}
@@ -46,8 +46,8 @@

{question.title}

- -  {category}    + +  {category.title}   
diff --git a/Resources/Private/Backend/Templates/Quiz/Charts.html b/Resources/Private/Backend/Templates/Quiz/Charts.html index c3280f8..386675f 100644 --- a/Resources/Private/Backend/Templates/Quiz/Charts.html +++ b/Resources/Private/Backend/Templates/Quiz/Charts.html @@ -1,7 +1,7 @@ - Chart from https://speckyboy.com/code-snippets-css3-bar-graphs/ + Multi-Chart from https://speckyboy.com/code-snippets-css3-bar-graphs/

{pid}

diff --git a/Resources/Private/Partials/Question/Result.html b/Resources/Private/Partials/Question/Result.html index d473437..2758f06 100644 --- a/Resources/Private/Partials/Question/Result.html +++ b/Resources/Private/Partials/Question/Result.html @@ -25,13 +25,23 @@
- -
{category}: + +
{category.title}:  - - {cat3count} {f:translate(key: "text.choices")} + + {cat3count} + {f:translate(key: "text.choices")}; + {f:translate(key: "text.myChoice", default: 'my choice')} +   +
+
+ + {cat3count * 100 / question.allAnswers} + % +
+
diff --git a/ext_emconf.php b/ext_emconf.php index e25f6b4..c2bc1f7 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -16,7 +16,7 @@ 'category' => 'plugin', 'author' => 'Kurt Gusbeth', 'state' => 'stable', - 'version' => '5.1.3', + 'version' => '5.1.4', 'constraints' => [ 'depends' => [ 'typo3' => '12.4.0-12.4.99',