diff --git a/templates/quiz/create.html b/templates/quiz/create.html index da0bb49..43c5ed1 100644 --- a/templates/quiz/create.html +++ b/templates/quiz/create.html @@ -9,7 +9,7 @@

Please remember:

  • Your question should not be a trick question, and be free from distractions
  • Your explanation should be clear and to the point
  • Your explanation should use correct terminology, and refer to the standard where possible
  • -
  • Prefer well defined programs over programs with compilation errors, undefined or unspecified behaviour
  • +
  • Prefer well defined programs over programs with compilation errors, undefined or unspecified behavior
  • What does all of that mean?

  • @@ -23,7 +23,7 @@

    Please remember:

    {{ form.answer }} {{ form.answer.errors }}Leave blank for questions with errors / undefined behavior

    -

    +

    {{ form.explanation.errors }}

    {{ form.explanation }}

    diff --git a/templates/quiz/help.html b/templates/quiz/help.html index 66fa441..f771e2b 100644 --- a/templates/quiz/help.html +++ b/templates/quiz/help.html @@ -4,7 +4,7 @@ Continue quiz

    About

    -C++ Quiz is written by Anders Schau Knatten with valuable input from Olve Maudal, Fernando Cacciola, other members of the ACCU, and several other contributers. If you discover any errors, or would like to contribute, please contact me at anders AT knatten.org, on Twitter, or on GitHub. +C++ Quiz is written by Anders Schau Knatten with valuable input from Olve Maudal, Fernando Cacciola, other members of the ACCU, and several other contributors. If you discover any errors, or would like to contribute, please contact me at anders AT knatten.org, on Twitter, or on GitHub.

    Help/FAQ

    What is this?

    @@ -18,14 +18,14 @@

    I don't agree with an answer!

    How does scoring work?

    If you are taking a fixed quiz (not just answering random questions in training mode), you get one point per correct answer. If you used a hint for that question, 0.5 is subtracted from your point. For each incorrect attempt you made at that question, the point is further divided by two. For instance, if you used one hint and three incorrect attempts, you get (1 - 0.5) / (2 * 2 * 2) = 0.0625 points. As you can see, it pays to think things through rather than guessing, and using a hint is often also better than guessing.

    What features are planned?

    -

    See open issues at GitHub.

    +

    See open issues on GitHub.

    How can I help?

    If you know C++, by adding more questions, or joining our mailing-list cppquiz-discuss@cppquiz.org. If you know Python/Django/JavaScript, by extending functionality. If you know web-design, by improving the design. Please contact me at anders AT knatten.org or Twitter.

    Cookies

    -We use cookies to able to show you your progress in the quiz. These cookies are only used for the site to function properly, we don't use any cookies for marketing or similar. In particular, we do not use any third party cookies. We also don't collect any personal information about you. If you do not want us to do so, please refrain from using the site.

    +We use cookies to be able to show you your progress in the quiz. These cookies are only used for the site to function properly, we don't use any cookies for marketing or similar. In particular, we do not use any third party cookies. We also don't collect any personal information about you. If you do not want us to do so, please refrain from using the site.

    {%endblock%}